// DateTime.h: interface for the CDateTime class. // ////////////////////////////////////////////////////////////////////// #pragma once #include #include "DllDefines.h" class UTILITYDLL CDateTime { public: // default constructor CDateTime(); // default destructor virtual ~CDateTime(); // get Date in double in Day/Month/Year/Hours/Minutes/Sec format static double GetDateInDMYHMS(const std::string& csDate); // get Date in double in Day/Month/Year/Hours/Minutes/Sec format static COleDateTime GetDateTimeInDMYHMS(const std::string& strString); };