]> git.tdb.fi Git - libs/core.git/blobdiff - source/time/datetime.cpp
Assimilate exceptions and RefPtr from mspmisc
[libs/core.git] / source / time / datetime.cpp
index 4fcec9641f4bf23a2ac25c4c17c5f23c24bd7bd9..d74fc6fbd0be4aef046626224e305830b4450a4e 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$ */
 #include <sstream>
 #include <iomanip>
 /* $Id$ */
 #include <sstream>
 #include <iomanip>
-#include <msp/error.h>
+#include "../core/error.h"
 #include "datetime.h"
 #include "timestamp.h"
 
 #include "datetime.h"
 #include "timestamp.h"
 
@@ -40,9 +40,6 @@ inline int cmp_(T a, T b)
 
 }
 
 
 }
 
-#include <iostream>
-using namespace std;
-
 namespace Msp {
 namespace Time {
 
 namespace Msp {
 namespace Time {
 
@@ -68,12 +65,32 @@ DateTime::DateTime(int32_t y, uint8_t m, uint8_t d):
        usec(0)
 { }
 
        usec(0)
 { }
 
+DateTime::DateTime(int32_t y, uint8_t m, uint8_t d, uint8_t h, uint8_t n, uint8_t s):
+       year(y),
+       month(m),
+       mday(d),
+       hour(h),
+       minute(n),
+       second(s),
+       usec(0)
+{ }
+
+DateTime::DateTime(int32_t y, uint8_t m, uint8_t d, uint8_t h, uint8_t n, uint8_t s, uint32_t u):
+       year(y),
+       month(m),
+       mday(d),
+       hour(h),
+       minute(n),
+       second(s),
+       usec(u)
+{ }
+
 void DateTime::add_days(int32_t days)
 {
        unsigned new_year=year;
 
        /* Leap years have a 400 year cycle, so any 400 consecutive years have a
 void DateTime::add_days(int32_t days)
 {
        unsigned new_year=year;
 
        /* Leap years have a 400 year cycle, so any 400 consecutive years have a
-       constant number of days */
+       constant number of days (400*365+97=146097) */
        new_year+=days/146097*400;
        days%=146097;
 
        new_year+=days/146097*400;
        days%=146097;