summaryrefslogtreecommitdiff
path: root/ace/adapter/ace/System_Time.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/adapter/ace/System_Time.h')
-rw-r--r--ace/adapter/ace/System_Time.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/ace/adapter/ace/System_Time.h b/ace/adapter/ace/System_Time.h
new file mode 100644
index 00000000000..3557b4493a8
--- /dev/null
+++ b/ace/adapter/ace/System_Time.h
@@ -0,0 +1,21 @@
+// $Id$
+
+#ifndef ACE_ADAPTER_SYSTEM_TIME_H
+#define ACE_ADAPTER_SYSTEM_TIME_H
+#include "ace/pre.h"
+
+#include "../../System_Time.h"
+
+class ACE_System_Time_W : public ACE_System_Time
+{
+public:
+ ACE_System_Time_W (const wchar_t *poolname = 0)
+ : ACE_System_Time (ACE_TEXT_WCHAR_TO_CHAR (poolname))
+ {}
+
+ ~ACE_System_Time_W (void)
+ {}
+};
+
+#include "ace/post.h"
+#endif /* ACE_ADAPTER_SYSTEM_TIME_H */