summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h114
1 files changed, 114 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h b/TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h
new file mode 100644
index 00000000000..52c8a670e22
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/IFRService/ArrayDef_i.h
@@ -0,0 +1,114 @@
+// -*- C++ -*-
+
+
+//=============================================================================
+/**
+ * @file ArrayDef_i.h
+ *
+ * $Id$
+ *
+ * ArrayDef servant class.
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#ifndef TAO_ARRAYDEF_I_H
+#define TAO_ARRAYDEF_I_H
+
+#include "orbsvcs/IFRService/IDLType_i.h"
+#include "orbsvcs/IFRService/ifr_service_export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#if defined(_MSC_VER)
+#pragma warning(push)
+#pragma warning(disable:4250)
+#endif /* _MSC_VER */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+/**
+ * @class TAO_ArrayDef_i
+ *
+ * @brief TAO_ArrayDef_i
+ *
+ * Represents an IDL array type.
+ */
+class TAO_IFRService_Export TAO_ArrayDef_i : public virtual TAO_IDLType_i
+{
+public:
+ /// Constructor
+ TAO_ArrayDef_i (TAO_Repository_i *repo);
+
+ /// Destructor
+ virtual ~TAO_ArrayDef_i (void);
+
+ /// Return our definition kind.
+ virtual CORBA::DefinitionKind def_kind ()
+;
+
+ /// Remove the repository entry.
+ virtual void destroy ()
+;
+
+ virtual void destroy_i ()
+;
+
+ virtual CORBA::TypeCode_ptr type ()
+;
+
+ virtual CORBA::TypeCode_ptr type_i ()
+;
+
+ virtual CORBA::ULong length ()
+;
+
+ CORBA::ULong length_i ()
+;
+
+ virtual void length (
+ CORBA::ULong length)
+;
+
+ void length_i (
+ CORBA::ULong length)
+;
+
+ virtual CORBA::TypeCode_ptr element_type ()
+;
+
+ CORBA::TypeCode_ptr element_type_i ()
+;
+
+ virtual CORBA::IDLType_ptr element_type_def ()
+;
+
+ CORBA::IDLType_ptr element_type_def_i ()
+;
+
+ virtual void element_type_def (
+ CORBA::IDLType_ptr element_type_def)
+;
+
+ void element_type_def_i (
+ CORBA::IDLType_ptr element_type_def)
+;
+
+private:
+ /// Destroys an anonymous non-primitive element type.
+ void destroy_element_type ()
+;
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined(_MSC_VER)
+#pragma warning(pop)
+#endif /* _MSC_VER */
+
+#endif /* TAO_ARRAYDEF_I_H */