diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-12-09 18:41:20 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2004-12-09 18:41:20 +0000 |
commit | 5f56c936029d3e881fd46d47b3f27441f4e902b0 (patch) | |
tree | 1ba0b9b00c67ca171dcf58a8fe8de3932f818f07 /TAO/tao/ParameterMode.pidl | |
parent | 60df68983982a4a3e70269e16753a2ccf82e7325 (diff) | |
download | ATCD-5f56c936029d3e881fd46d47b3f27441f4e902b0.tar.gz |
ChangeLogTag: Thu Dec 9 18:39:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/ParameterMode.pidl')
-rw-r--r-- | TAO/tao/ParameterMode.pidl | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/TAO/tao/ParameterMode.pidl b/TAO/tao/ParameterMode.pidl new file mode 100644 index 00000000000..f3721baa133 --- /dev/null +++ b/TAO/tao/ParameterMode.pidl @@ -0,0 +1,37 @@ +// -*- IDL -*- + +// ================================================================ +/** + * @file ParameterMode.pidl + * + * $Id$ + * + * This file was used to generate the code in ParameterModeC.* The command + * used to generate code is: + * + * tao_idl + * -o orig -Ge 1 -GT -Sc -St + * -Wb,export_macro=TAO_Export + * -Wb,export_include="tao/TAO_Export.h" + * -Wb,pre_include="ace/pre.h" + * -Wb,post_include="ace/post.h" + * ParameterMode.pidl + */ +// ================================================================ + +#ifndef TAO_PARAMETERMODE_IDL +#define TAO_PARAMETERMODE_IDL + +#pragma prefix "omg.org" + +module CORBA +{ + enum ParameterMode + { + PARAM_IN, + PARAM_OUT, + PARAM_INOUT + }; +}; + +#endif /* TAO_PARAMETERMODE_IDL */ |