diff options
Diffstat (limited to 'cpp/demo/Ice/callback/CallbackI.h')
-rw-r--r-- | cpp/demo/Ice/callback/CallbackI.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/demo/Ice/callback/CallbackI.h b/cpp/demo/Ice/callback/CallbackI.h new file mode 100644 index 00000000000..8d928b9103e --- /dev/null +++ b/cpp/demo/Ice/callback/CallbackI.h @@ -0,0 +1,30 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef CALLBACK_I_H +#define CALLBACK_I_H + +#include <Callback.h> + +class CallbackReceiverI : public CallbackReceiver +{ +public: + + virtual void callback(const Ice::Current&); +}; + +class CallbackI : public Callback +{ +public: + + virtual void initiateCallback(const CallbackReceiverPrx&, const Ice::Current&); +}; + +#endif |