Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / examples / RTScheduling / Synch_i.h
blob5ccfa567b980826696469c7f81c1c69c979c8445
1 #ifndef SYNCH_I_H
2 #define SYNCH_I_H
4 #include "SynchS.h"
6 class SYNCH_Export Synch_i : public POA_Synch
8 public:
9 Synch_i ();
10 virtual void go (CORBA::Long base_time);
12 int synched ();
14 ACE_Time_Value* base_time ();
16 private:
17 int synched_;
18 ACE_Time_Value base_time_;
21 #endif /*SYNCH_I_H*/