Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / examples / CSD_Strategy / ThreadPool3 / Foo_i.h
blobea7db122e12c823fb36ebf98bb2438bea1493434
1 #ifndef FOO_I_H
2 #define FOO_I_H
4 #include "FooS.h"
7 class Foo_i : public virtual POA_Foo
9 public:
11 Foo_i(unsigned num_clients);
12 virtual ~Foo_i();
14 virtual void op1(void);
16 virtual void op2(CORBA::Long value);
18 virtual CORBA::Long op3(void);
20 virtual void op4(CORBA::Long value);
22 virtual void op5(void);
24 virtual void done(void);
26 private:
28 CORBA::Long value_;
29 unsigned num_clients_;
32 #endif