// ********************************************************************** // // Copyright (c) 2001 // ZeroC, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_BUFFER_H #define ICE_BUFFER_H #include 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 Container; Container b; Container::iterator i; }; } #endif