diff options
Diffstat (limited to 'cpp/demo/Ice/callback/CallbackI.h')
-rw-r--r-- | cpp/demo/Ice/callback/CallbackI.h | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/cpp/demo/Ice/callback/CallbackI.h b/cpp/demo/Ice/callback/CallbackI.h index 30359a00f92..72a1dfbe7e2 100644 --- a/cpp/demo/Ice/callback/CallbackI.h +++ b/cpp/demo/Ice/callback/CallbackI.h @@ -1,37 +1,37 @@ -// **********************************************************************
-//
-// 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:
-
- CallbackI(const Ice::CommunicatorPtr&);
-
- virtual void initiateCallback(const CallbackReceiverPrx&, const Ice::Current&);
- virtual void shutdown(const Ice::Current&);
-
-private:
-
- Ice::CommunicatorPtr _communicator;
-};
-
-#endif
+// ********************************************************************** +// +// 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: + + CallbackI(const Ice::CommunicatorPtr&); + + virtual void initiateCallback(const CallbackReceiverPrx&, const Ice::Current&); + virtual void shutdown(const Ice::Current&); + +private: + + Ice::CommunicatorPtr _communicator; +}; + +#endif |