You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
378 B
29 lines
378 B
2 years ago
|
#ifndef BASEDECODER_H
|
||
|
#define BASEDECODER_H
|
||
|
|
||
|
#include <QList>
|
||
|
#include "CommandsType.h"
|
||
|
template<class T>
|
||
|
|
||
|
class A
|
||
|
{
|
||
|
T x;
|
||
|
|
||
|
public:
|
||
|
A()
|
||
|
{
|
||
|
//std::cout << "Constructor Called" << endl;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
class BaseDecoder
|
||
|
{
|
||
|
public:
|
||
|
BaseDecoder();
|
||
|
template<typename T, typename ... Types>
|
||
|
virtual QList<CommandsType> decoderString();
|
||
|
virtual ~BaseDecoder();
|
||
|
};
|
||
|
|
||
|
#endif //BASEDECODER_H
|