Sim-LIT  2.0
 All Classes Namespaces Files Functions Variables Typedefs
ForwardProcessing.h
Go to the documentation of this file.
1 
10 #ifndef CLASS_FORWARDPROCESSING
11 #define CLASS_FORWARDPROCESSING
12 
13 #include <vector>
14 #include "DataType.h"
15 
16 using namespace std;
17 
19 
20  //static int order;
21 
22 public:
23 
24  virtual int make(vector<DataType *> *list, int width, int height, vector<int> parameters, int nParameters, bool show_data) = 0;
25  virtual int unmake(vector<DataType *> *list, bool show_data) = 0;
26 /* static void set(int a){
27  order=order+a;
28  }
29  static int get(){
30  return order;
31  }
32  static void define(){
33  order=0;
34  }
35 */
36 };
37 
38 
39 #endif
Clase abstracta que representa la estructura que debe tener todo procesamiento de imagen...