summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp')
-rw-r--r--CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp52
1 files changed, 0 insertions, 52 deletions
diff --git a/CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp b/CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp
deleted file mode 100644
index ebbb2398764..00000000000
--- a/CIAO/CCF/CCF/IDL2/SemanticAction/Interface.hpp
+++ /dev/null
@@ -1,52 +0,0 @@
-// file : CCF/IDL2/SemanticAction/Interface.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_SEMANTIC_ACTION_INTERFACE_HPP
-#define CCF_IDL2_SEMANTIC_ACTION_INTERFACE_HPP
-
-#include "CCF/IDL2/SemanticAction/Elements.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticAction
- {
- struct Interface : Scope
- {
- virtual void
- begin_abstract_def (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- begin_abstract_fwd (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- begin_local_def (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- begin_local_fwd (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- begin_unconstrained_def (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- begin_unconstrained_fwd (SimpleIdentifierPtr const& id) = 0;
-
- virtual void
- inherits (IdentifierPtr const& id) = 0;
-
- virtual void
- open_scope () = 0;
-
- virtual void
- close_scope () = 0;
-
- virtual void
- end () = 0;
- };
- }
- }
-}
-
-#endif // CCF_IDL2_SEMANTIC_ACTION_INTERFACE_HPP