diff options
Diffstat (limited to 'cpp/include/Ice/Incoming.h')
-rw-r--r-- | cpp/include/Ice/Incoming.h | 92 |
1 files changed, 46 insertions, 46 deletions
diff --git a/cpp/include/Ice/Incoming.h b/cpp/include/Ice/Incoming.h index 8e8322b0fb3..851115c16cc 100644 --- a/cpp/include/Ice/Incoming.h +++ b/cpp/include/Ice/Incoming.h @@ -1,46 +1,46 @@ -// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#ifndef ICE_INCOMING_H
-#define ICE_INCOMING_H
-
-#include <Ice/ObjectAdapterF.h>
-#include <Ice/InstanceF.h>
-#include <Ice/BasicStream.h>
-
-namespace IceInternal
-{
-
-class ICE_API Incoming : public ::IceUtil::noncopyable
-{
-public:
-
- Incoming(const InstancePtr&, const ::Ice::ObjectAdapterPtr&);
-
- void invoke(bool);
-
- BasicStream* is();
- BasicStream* os();
-
-private:
-
- //
- // Optimization. The adapter may not be deleted while a
- // stack-allocated Incoming still holds it.
- //
- const ::Ice::ObjectAdapterPtr& _adapter;
-
- BasicStream _is;
- BasicStream _os;
-};
-
-}
-
-#endif
+// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_INCOMING_H +#define ICE_INCOMING_H + +#include <Ice/ObjectAdapterF.h> +#include <Ice/InstanceF.h> +#include <Ice/BasicStream.h> + +namespace IceInternal +{ + +class ICE_API Incoming : public ::IceUtil::noncopyable +{ +public: + + Incoming(const InstancePtr&, const ::Ice::ObjectAdapterPtr&); + + void invoke(bool); + + BasicStream* is(); + BasicStream* os(); + +private: + + // + // Optimization. The adapter may not be deleted while a + // stack-allocated Incoming still holds it. + // + const ::Ice::ObjectAdapterPtr& _adapter; + + BasicStream _is; + BasicStream _os; +}; + +} + +#endif |