diff options
author | Marc Laukien <marc@zeroc.com> | 2002-01-15 17:14:48 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-01-15 17:14:48 +0000 |
commit | 03ebac3c1b6a55418de40b98a303620f85ea2023 (patch) | |
tree | 0377744a848f7b2739514e74d3af761737978e3d /cpp/demo/Ice/callback/CallbackI.h | |
parent | updates. (diff) | |
download | ice-03ebac3c1b6a55418de40b98a303620f85ea2023.tar.bz2 ice-03ebac3c1b6a55418de40b98a303620f85ea2023.tar.xz ice-03ebac3c1b6a55418de40b98a303620f85ea2023.zip |
callback demo
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 |