summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h')
-rw-r--r--ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h b/ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h
new file mode 100644
index 00000000000..84f1dc7e5b5
--- /dev/null
+++ b/ACE/TAO/orbsvcs/orbsvcs/IFRService/FixedDef_i.h
@@ -0,0 +1,105 @@
+// -*- C++ -*-
+
+
+//=============================================================================
+/**
+ * @file FixedDef_i.h
+ *
+ * $Id$
+ *
+ * FixedDef servant class.
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#ifndef TAO_FIXEDDEF_I_H
+#define TAO_FIXEDDEF_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_FixedDef_i
+ *
+ * @brief TAO_FixedDef_i
+ *
+ * Represents an IDL fixed type.
+ */
+class TAO_IFRService_Export TAO_FixedDef_i : public virtual TAO_IDLType_i
+{
+public:
+ /// Constructor
+ TAO_FixedDef_i (TAO_Repository_i *repo);
+
+ /// Destructor
+ virtual ~TAO_FixedDef_i (void);
+
+ /// Return our definition kind.
+ virtual CORBA::DefinitionKind def_kind (
+ );
+
+ /// Remove the repository entry.
+ virtual void destroy (
+ );
+
+ virtual void destroy_i (
+ );
+
+ /// From IDLType_i's pure virtual function.
+ virtual CORBA::TypeCode_ptr type (
+ );
+
+ /// From IDLType_i's pure virtual function.
+ virtual CORBA::TypeCode_ptr type_i (
+ );
+
+ virtual CORBA::UShort digits (
+ );
+
+ CORBA::UShort digits_i (
+ );
+
+ virtual void digits (
+ CORBA::UShort digits
+ );
+
+ void digits_i (
+ CORBA::UShort digits
+ );
+
+ virtual CORBA::Short scale (
+ );
+
+ CORBA::Short scale_i (
+ );
+
+ virtual void scale (
+ CORBA::Short scale
+ );
+
+ void scale_i (
+ CORBA::Short scale
+ );
+};
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined(_MSC_VER)
+#pragma warning(pop)
+#endif /* _MSC_VER */
+
+#endif /* TAO_FIXEDDEF_I_H */