summaryrefslogtreecommitdiff
path: root/cosv/source/service/datetime.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'cosv/source/service/datetime.cxx')
-rw-r--r--cosv/source/service/datetime.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/cosv/source/service/datetime.cxx b/cosv/source/service/datetime.cxx
index 277197ab0fa6..8204ca09a655 100644
--- a/cosv/source/service/datetime.cxx
+++ b/cosv/source/service/datetime.cxx
@@ -37,12 +37,6 @@
namespace csv
{
-
-Date::Date()
- : nData( 0 )
-{
-}
-
Date::Date( unsigned i_nDay,
unsigned i_nMonth,
unsigned i_nYear )
@@ -50,19 +44,6 @@ Date::Date( unsigned i_nDay,
{
}
-const Date &
-Date::Null_()
-{
- static const Date C_DateNull_(0,0,0);
- return C_DateNull_;
-}
-
-
-Time::Time()
- : nData( 0 )
-{
-}
-
Time::Time( unsigned i_nHour,
unsigned i_nMinutes,
unsigned i_nSeconds,
@@ -71,15 +52,6 @@ Time::Time( unsigned i_nHour,
{
}
-const Time &
-Time::Null_()
-{
- static const Time C_TimeNull_(0,0);
- return C_TimeNull_;
-}
-
-
-
} // namespace csv