summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-03-05 17:14:45 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-03-05 17:14:45 +0000
commit58033491c6d0bac82315c1fdb1ec9b39be58093f (patch)
treec69c3aa67ec66758066e959bd0d533ea336ec236 /TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp
parent2efc882384a34f61311a24fc641d1b5fd5776356 (diff)
downloadATCD-TAO-1_5.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-1_5'.TAO-1_5
Diffstat (limited to 'TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp')
-rw-r--r--TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp69
1 files changed, 0 insertions, 69 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp b/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp
deleted file mode 100644
index f25315a1a28..00000000000
--- a/TAO/CIAO/CCF/CCF/IDL2/SemanticAction/Impl/Interface.hpp
+++ /dev/null
@@ -1,69 +0,0 @@
-// file : CCF/IDL2/SemanticAction/Impl/Interface.hpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#ifndef CCF_IDL2_SEMANTIC_ACTION_IMPL_INTERFACE_HPP
-#define CCF_IDL2_SEMANTIC_ACTION_IMPL_INTERFACE_HPP
-
-#include "CCF/IDL2/SemanticGraph/Interface.hpp"
-#include "CCF/IDL2/SemanticAction/Interface.hpp"
-#include "CCF/IDL2/SemanticAction/Impl/Elements.hpp"
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticAction
- {
- namespace Impl
- {
- struct Interface : SemanticAction::Interface,
- ScopeBase<SemanticGraph::Interface>
- {
- Interface (Context& c);
-
- virtual void
- begin_abstract_def (SimpleIdentifierPtr const& id);
-
- virtual void
- begin_abstract_fwd (SimpleIdentifierPtr const& id);
-
- virtual void
- begin_local_def (SimpleIdentifierPtr const& id);
-
- virtual void
- begin_local_fwd (SimpleIdentifierPtr const& id);
-
- virtual void
- begin_unconstrained_def (SimpleIdentifierPtr const& id);
-
- virtual void
- begin_unconstrained_fwd (SimpleIdentifierPtr const& id);
-
- virtual void
- inherits (IdentifierPtr const& id);
-
- virtual void
- open_scope ();
-
- virtual void
- close_scope ();
-
- virtual void
- end ();
-
- private:
- struct Qualifier
- {
- enum Value { abstract, local, unconstrained };
- };
-
- Qualifier::Value qualifier_;
- };
-
- }
- }
- }
-}
-
-#endif // CCF_IDL2_SEMANTIC_ACTION_IMPL_INTERFACE_HPP