Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / CSD_Strategy / ThreadPool3 / Foo_i.h
blob230ca09f03fa2b2a8985cd0569eb82139fc879fb
1 #ifndef FOO_I_H
2 #define FOO_I_H
4 #include "FooS.h"
7 class Foo_i : public virtual POA_Foo
9 public:
10 Foo_i(unsigned num_clients);
11 virtual ~Foo_i();
13 virtual void op1();
15 virtual void op2(CORBA::Long value);
17 virtual CORBA::Long op3();
19 virtual void op4(CORBA::Long value);
21 virtual void op5();
23 virtual void done();
25 private:
26 CORBA::Long value_;
27 unsigned num_clients_;
30 #endif