diff options
author | bala <balanatarajan@users.noreply.github.com> | 2003-10-28 18:31:01 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2003-10-28 18:31:01 +0000 |
commit | c20c95d4d526d887c9782960a3ff73f63c3c1c85 (patch) | |
tree | fd6ae8c3db752254802dfaafd1543974a4741e47 /TAO/tao/Argument.h | |
parent | 3d20d6aedf2b56b86fe2a386777c7afbf1c19c93 (diff) | |
download | ATCD-c20c95d4d526d887c9782960a3ff73f63c3c1c85.tar.gz |
ChangeLogTag:Tue Oct 28 12:02:47 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Argument.h')
-rw-r--r-- | TAO/tao/Argument.h | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/TAO/tao/Argument.h b/TAO/tao/Argument.h new file mode 100644 index 00000000000..b6fd21c5bcd --- /dev/null +++ b/TAO/tao/Argument.h @@ -0,0 +1,61 @@ +// This may look like C, but it's really -*- C++ -*- + +//============================================================================= +/** + * @file Argument.h + * + * $Id$ + * + * @authors Jeff Parsons and Carlos O'Ryan + */ +//============================================================================= + + +#ifndef TAO_ARGUMENT_H +#define TAO_ARGUMENT_H + +#include /**/ "ace/pre.h" +#include "tao/Basic_Types.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#include "tao/TAO_Export.h" + +namespace Dynamic +{ + struct Parameter; +}; + +namespace CORBA +{ + class Any; +} + +class TAO_OutputCDR; +class TAO_InputCDR; + +namespace TAO +{ + /** + * @class Argument + * + * @brief Base class for template argument classes. + * + */ + class TAO_Export Argument + { + public: + virtual ~Argument (void); + virtual CORBA::Boolean marshal (TAO_OutputCDR &); + virtual CORBA::Boolean demarshal (TAO_InputCDR &); + virtual void interceptor_param (Dynamic::Parameter &); + virtual void interceptor_result (CORBA::Any *); + }; + +} + +#include /**/ "ace/post.h" + +#endif /* TAO_ARGUMENT_H */ |