#ifndef guard_bounded_string_sequence_hpp #define guard_bounded_string_sequence_hpp /** * @file * * @brief Implement bounded sequences for strings. * * $Id$ * * @author Carlos O'Ryan */ #include "tao/Bounded_Basic_String_Sequence_T.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO { template class bounded_string_sequence : public details::bounded_basic_string_sequence { public: inline bounded_string_sequence() : details::bounded_basic_string_sequence() {} inline bounded_string_sequence( CORBA::ULong length, char * * data, CORBA::Boolean release = false) : details::bounded_basic_string_sequence( length, data, release) {} }; } // namespace TAO TAO_END_VERSIONED_NAMESPACE_DECL #endif // guard_bounded_string_sequence_hpp