summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp')
-rw-r--r--TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp57
1 files changed, 0 insertions, 57 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp b/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp
deleted file mode 100644
index 89e83c50b9b..00000000000
--- a/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Operation.hpp
+++ /dev/null
@@ -1,57 +0,0 @@
-// file : CCF/IDL2/SemanticAction/Operation.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_SEMANTIC_ACTION_OPERATION_HPP
-#define CCF_IDL2_SEMANTIC_ACTION_OPERATION_HPP
-
-#include <iosfwd>
-
-#include "CCF/IDL2/SemanticAction/Elements.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticAction
- {
- struct Operation
- {
- virtual void
- one_way () = 0;
-
- virtual void
- two_way () = 0;
-
- virtual void
- type (IdentifierPtr const& id) = 0;
-
- virtual void
- name (SimpleIdentifierPtr const& id) = 0;
-
- struct Direction
- {
- enum Value
- {
- in = 0,
- out,
- inout
- };
-
- friend std::ostream&
- operator<< (std::ostream& o, Value d);
- };
-
- virtual void
- parameter (Direction::Value direction,
- IdentifierPtr const& type_id,
- SimpleIdentifierPtr const& name_id) = 0;
-
- virtual void
- raises (IdentifierPtr const& id) = 0;
- };
- }
- }
-}
-
-#endif // CCF_IDL2_SEMANTIC_ACTION_OPERATION_HPP