diff options
Diffstat (limited to 'cpp/include/Ice/Buffer.h')
-rw-r--r-- | cpp/include/Ice/Buffer.h | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/cpp/include/Ice/Buffer.h b/cpp/include/Ice/Buffer.h index f538283c1f5..a9a93cef5d9 100644 --- a/cpp/include/Ice/Buffer.h +++ b/cpp/include/Ice/Buffer.h @@ -1,37 +1,37 @@ -// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#ifndef ICE_BUFFER_H
-#define ICE_BUFFER_H
-
-#include <Ice/Config.h>
-
-namespace IceInternal
-{
-
-class ICE_API Buffer : public ::IceUtil::noncopyable
-{
-public:
-
- // TODO: Should not be inline, as this is not performance critical.
- Buffer()
- {
- b.reserve(1000);
- i = b.begin();
- }
-
- typedef std::vector<Ice::Byte> Container;
- Container b;
- Container::iterator i;
-};
-
-}
-
-#endif
+// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_BUFFER_H +#define ICE_BUFFER_H + +#include <Ice/Config.h> + +namespace IceInternal +{ + +class ICE_API Buffer : public ::IceUtil::noncopyable +{ +public: + + // TODO: Should not be inline, as this is not performance critical. + Buffer() + { + b.reserve(1000); + i = b.begin(); + } + + typedef std::vector<Ice::Byte> Container; + Container b; + Container::iterator i; +}; + +} + +#endif |