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.h100
1 files changed, 0 insertions, 100 deletions
diff --git a/TAO/tao/PortableServer/Creation_Time.h b/TAO/tao/PortableServer/Creation_Time.h
deleted file mode 100644
index 5804c01a892..00000000000
--- a/TAO/tao/PortableServer/Creation_Time.h
+++ /dev/null
@@ -1,100 +0,0 @@
-// -*- 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 */
-
-namespace TAO
-{
- namespace Portable_Server
- {
- class Temporary_Creation_Time;
-
- class Creation_Time
- {
- public:
- 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_;
- };
- }
-}
-
-#if defined (__ACE_INLINE__)
-# include "Creation_Time.inl"
-#endif /* __ACE_INLINE__ */
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_CREATION_TIME_H */