summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-06 17:42:57 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-06 17:42:57 +0000
commit6c11f7ee1807e220d118b6e29b4acfffbec968f7 (patch)
treee7c027a1d0a638b28c8410a7c2512d492e2f2036 /TAO/orbsvcs/IFR_Service/IRObject_i.cpp
parent0be890ba2ed7e6ff03b993012dea234b5494ad7b (diff)
downloadATCD-6c11f7ee1807e220d118b6e29b4acfffbec968f7.tar.gz
New IFR implementation files.
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/IRObject_i.cpp')
-rw-r--r--TAO/orbsvcs/IFR_Service/IRObject_i.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/TAO/orbsvcs/IFR_Service/IRObject_i.cpp b/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
new file mode 100644
index 00000000000..98b6e25a0ce
--- /dev/null
+++ b/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
@@ -0,0 +1,29 @@
+/* -*- C++ -*- */
+// $Id$
+
+#include "IRObject_i.h"
+#include "Repository_i.h"
+
+ACE_RCSID(IFR_Service, IRObject_i, "$Id$")
+
+TAO_IRObject_i::TAO_IRObject_i (TAO_Repository_i *repo,
+ ACE_Configuration_Section_Key section_key)
+ : repo_ (repo),
+ section_key_ (section_key)
+{
+}
+
+TAO_IRObject_i::~TAO_IRObject_i (void)
+{
+}
+
+char *
+TAO_IRObject_i::int_to_string (CORBA::ULong number) const
+{
+ char retval[9];
+
+ ACE_OS::sprintf (retval, "%08.8X", number);
+
+ return CORBA::string_dup (retval);
+}
+