blob: d11af119f9dafed42efe948095a30e07a7dd34c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// -*- C++ -*-
//==========================================================================
/**
* @file Date_Time.h
*
* $Id$
*
* @author Tim Harrison (harrison@cs.wustl.edu) (and he's darn proud of this ;-))
*
*/
//==========================================================================
#ifndef ACE_DATE_TIME_H
#define ACE_DATE_TIME_H
#include /**/ "ace/pre.h"
#include "ace/ACE_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class ACE_Time_Value;
/**
* @class ACE_Date_Time
*
* @brief System independent representation of date and time.
*/
class ACE_Export ACE_Date_Time
{
public:
/// Constructor initializes current time/date info.
ACE_Date_Time (void);
/// Constructor initializes with the given ACE_Time_Value
explicit ACE_Date_Time (const ACE_Time_Value& timevalue);
/// Constructor with init values, no check for validy
/// Set/get portions of ACE_Date_Time, no check for validity.
ACE_Date_Time (long day,
long month = 0,
long year = 0,
long hour = 0,
long minute = 0,
long second = 0,
long microsec = 0,
long wday = 0);
/// Update to the current time/date.
void update (void);
/// Update to the given ACE_Time_Value
void update (const ACE_Time_Value& timevalue);
/// Get day.
long day (void) const;
/// Set day.
void day (long day);
/// Get month.
long month (void) const;
/// Set month.
void month (long month);
/// Get year.
long year (void) const;
/// Set year.
void year (long year);
/// Get hour.
long hour (void) const;
/// Set hour.
void hour (long hour);
/// Get minute.
long minute (void) const;
/// Set minute.
void minute (long minute);
/// Get second.
long second (void) const;
/// Set second.
void second (long second);
/// Get microsec.
long microsec (void) const;
/// Set microsec.
void microsec (long microsec);
/// Get weekday.
long weekday (void) const;
/// Set weekday.
void weekday (long wday);
private:
long day_;
long month_;
long year_;
long hour_;
long minute_;
long second_;
long microsec_;
long wday_;
};
#if defined (__ACE_INLINE__)
#include "ace/Date_Time.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* ACE_DATE_TIME_H */
|