diff options
Diffstat (limited to 'cpp/test/Ice/operations/TestI.h')
-rw-r--r-- | cpp/test/Ice/operations/TestI.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/TestI.h b/cpp/test/Ice/operations/TestI.h index 78b14652c17..d40b9bd1f51 100644 --- a/cpp/test/Ice/operations/TestI.h +++ b/cpp/test/Ice/operations/TestI.h @@ -16,6 +16,8 @@ class MyDerivedClassI : public Test::MyDerivedClass { public: + MyDerivedClassI(); + // // Override the Object "pseudo" operations to verify the operation mode. // @@ -229,6 +231,7 @@ public: virtual Test::IntS opIntS(const Test::IntS&, const Ice::Current&); virtual void opByteSOneway(const Test::ByteS&, const Ice::Current&); + virtual int opByteSOnewayCallCount(const Ice::Current&); virtual Ice::Context opContext(const Ice::Current&); @@ -239,6 +242,11 @@ public: virtual void opNonmutating(const Ice::Current&); virtual void opDerived(const Ice::Current&); + +private: + + IceUtil::Mutex _mutex; + int _opByteSOnewayCallCount; }; #endif |