summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/IFR_Service/IRObject_i.cpp')
-rw-r--r--TAO/orbsvcs/IFR_Service/IRObject_i.cpp28
1 files changed, 28 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..3abb5555646
--- /dev/null
+++ b/TAO/orbsvcs/IFR_Service/IRObject_i.cpp
@@ -0,0 +1,28 @@
+/* -*- C++ -*- */
+// $Id$
+
+#include "IRObject_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, "%8.8X", number);
+
+ return CORBA::string_dup (retval);
+}
+