임준영

change evaluate.h

1 #ifndef __EVALUATE 1 #ifndef __EVALUATE
2 -
3 #define __EVALUATE 2 #define __EVALUATE
4 #include <cmath> 3 #include <cmath>
5 #include "variables.h" 4 #include "variables.h"
...@@ -8,7 +7,8 @@ public: ...@@ -8,7 +7,8 @@ public:
8 Cevaluate() {}; 7 Cevaluate() {};
9 char *DecodedData; // from the receiver 8 char *DecodedData; // from the receiver
10 char *Data; // from the sender 9 char *Data; // from the sender
11 - float *At, *Bt, *At_, *Bt_; 10 +
12 void evaluate(); 11 void evaluate();
12 + float *At, *Bt, *At_, *Bt_;
13 }; 13 };
14 #endif 14 #endif
......