Yacs++
 All Classes Functions
POW.hxx
1 
8 #ifndef __POW_HXX__
9 #define __POW_HXX__
10 
11 #include "Cle2000.hxx"
12 #include "Communication.hxx"
13 
14 class POW {
15 public:
18  POW();
19 
24  void initialize(double power, void* component);
25 
28  void run();
29 
30 private:
31  double power_;
32  Communication communicator_;
33 }; // class POW
34 
35 #endif