diff options
Diffstat (limited to 'TAO/orbsvcs/PSS/PSDL_Code_Gen.h')
-rw-r--r-- | TAO/orbsvcs/PSS/PSDL_Code_Gen.h | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/TAO/orbsvcs/PSS/PSDL_Code_Gen.h b/TAO/orbsvcs/PSS/PSDL_Code_Gen.h index 60bfb96a508..7ec81dfdc5e 100644 --- a/TAO/orbsvcs/PSS/PSDL_Code_Gen.h +++ b/TAO/orbsvcs/PSS/PSDL_Code_Gen.h @@ -46,32 +46,28 @@ class TAO_PSDL_Export TAO_PSDL_Code_Gen /// Initializes a IOP::CodecFactory and IOP::Codec to take care of /// the marshalling and demarshalling of data. int set_codec (void); - + /// Method to save the name-stringified object reference pair /// to the database. Returns -1 on failure. int set_name_obj_ref (const char *name, - const char *string_obj_ref - ACE_ENV_ARG_DECL) + const char *string_obj_ref) ACE_THROW_SPEC ((CORBA::SystemException)); /// Get the stringified form of the object reference given the name /// of the object. - const char *get_obj_ref (const char *name - ACE_ENV_ARG_DECL) + const char *get_obj_ref (const char *name) ACE_THROW_SPEC ((CORBA::SystemException)); private: /// Helper method which serializes the data and saves it to the /// database. - CORBA::OctetSeq *encode (const char *string_obj_ref - ACE_ENV_ARG_DECL_WITH_DEFAULTS) + CORBA::OctetSeq *encode (const char *string_obj_ref) ACE_THROW_SPEC ((CORBA::SystemException)); /// Helper method to get the octet sequence - const char *decode (const CORBA::OctetSeq &data - ACE_ENV_ARG_DECL_WITH_DEFAULTS) + const char *decode (const CORBA::OctetSeq &data) ACE_THROW_SPEC ((CORBA::SystemException)); /// File where the persistent data is stored. |