summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/background/Configuration.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/background/Configuration.h')
-rw-r--r--cpp/test/Ice/background/Configuration.h46
1 files changed, 21 insertions, 25 deletions
diff --git a/cpp/test/Ice/background/Configuration.h b/cpp/test/Ice/background/Configuration.h
index ddcedc2d3f9..9f0ff1ab634 100644
--- a/cpp/test/Ice/background/Configuration.h
+++ b/cpp/test/Ice/background/Configuration.h
@@ -25,30 +25,27 @@ public:
Configuration();
virtual ~Configuration();
- void connectorsException(Ice::LocalException*);
- void checkConnectorsException();
-
- void connectException(Ice::LocalException*);
- void checkConnectException();
-
- void initializeSocketOperation(IceInternal::SocketOperation);
- void initializeException(Ice::LocalException*);
- IceInternal::SocketOperation initializeSocketOperation();
- void checkInitializeException();
-
- void readReady(bool);
- void readException(Ice::LocalException*);
- bool readReady();
- void checkReadException();
-
- void writeReady(bool);
- void writeException(Ice::LocalException*);
- bool writeReady();
- void checkWriteException();
-
- void buffered(bool);
- bool buffered();
-
+ virtual void connectorsException(Ice::LocalException*);
+ virtual void checkConnectorsException();
+
+ virtual void connectException(Ice::LocalException*);
+ virtual void checkConnectException();
+
+ virtual void initializeSocketOperation(IceInternal::SocketOperation);
+ virtual void initializeException(Ice::LocalException*);
+ virtual IceInternal::SocketOperation initializeSocketOperation();
+ virtual void checkInitializeException();
+
+ virtual void readReady(bool);
+ virtual void readException(Ice::LocalException*);
+ virtual bool readReady();
+ virtual void checkReadException();
+
+ virtual void writeReady(bool);
+ virtual void writeException(Ice::LocalException*);
+ virtual bool writeReady();
+ virtual void checkWriteException();
+
static Configuration* getInstance();
private:
@@ -62,7 +59,6 @@ private:
IceUtil::UniquePtr<Ice::LocalException> _readException;
int _writeReadyCount;
IceUtil::UniquePtr<Ice::LocalException> _writeException;
- bool _buffered;
static Configuration* _instance;
};