summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/Creation_Time.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/Creation_Time.h')
-rw-r--r--TAO/tao/PortableServer/Creation_Time.h104
1 files changed, 104 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/Creation_Time.h b/TAO/tao/PortableServer/Creation_Time.h
new file mode 100644
index 00000000000..5fb58f93e72
--- /dev/null
+++ b/TAO/tao/PortableServer/Creation_Time.h
@@ -0,0 +1,104 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Creation_Time.h
+ *
+ * $Id$
+ *
+ * Header file for Creation_Time and Temporary_Creation_Time
+ *
+ * @author Irfan Pyarali <irfan@cs.wustl.edu>
+ */
+//=============================================================================
+
+#ifndef TAO_CREATION_TIME_H
+#define TAO_CREATION_TIME_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/Time_Value.h"
+#include "tao/Basic_Types.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ namespace Portable_Server
+ {
+ class Temporary_Creation_Time;
+
+ class Creation_Time
+ {
+ public:
+ explicit Creation_Time (const ACE_Time_Value &creation_time);
+
+ Creation_Time (void);
+
+ void creation_time (const void *creation_time);
+
+ const void *creation_time (void) const;
+
+ static CORBA::ULong creation_time_length (void);
+
+ bool operator== (const Creation_Time &rhs) const;
+
+ bool operator!= (const Creation_Time &rhs) const;
+
+ bool operator== (const Temporary_Creation_Time &rhs) const;
+
+ bool operator!= (const Temporary_Creation_Time &rhs) const;
+
+ protected:
+
+ enum
+ {
+ SEC_FIELD = 0,
+ USEC_FIELD = 1
+ };
+
+ /// Timestamp
+ CORBA::ULong time_stamp_[2];
+
+ };
+
+ /**
+ * @class Temporary_Creation_Time
+ *
+ * @brief Special creation time only useful in the lifetime of the
+ * upcall.
+ *
+ * Special creation time only useful in the lifetime of the upcall.
+ */
+ class Temporary_Creation_Time
+ {
+ public:
+
+ Temporary_Creation_Time (void);
+
+ void creation_time (const void *creation_time);
+
+ bool operator== (const Creation_Time &rhs) const;
+
+ bool operator!= (const Creation_Time &rhs) const;
+
+ protected:
+
+ void *time_stamp_;
+ };
+ }
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#if defined (__ACE_INLINE__)
+# include "tao/PortableServer/Creation_Time.inl"
+#endif /* __ACE_INLINE__ */
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_CREATION_TIME_H */