Sim-LIT  2.0
 All Classes Namespaces Files Functions Variables Typedefs
Packetizer.h
Go to the documentation of this file.
1 
9 #ifndef CLASS_PACKETIZER
10 #define CLASS_PACKETIZER
11 
12 #include "Package.h"
13 #include "DataType.h"
14 #include <vector>
15 
17 {
18 public:
19  Packetizer(){}
20  ~Packetizer(){}
21 
22  virtual vector<Package> imgToPackageList(vector<DataType *> list, int size, bool show_data)=0;
23  virtual vector<DataType *> packageListToImg(vector<Package> list, bool show_data)=0;
24  virtual int getSizeElements()=0;
25 };
26 
27 #endif
Clase que define la estructuras que debe tener el paquetizador.
Definition: Packetizer.h:16