00001 #pragma once 00002 #include <string> 00003 00004 using namespace std; 00005 00006 class LIBCMMLTAGS_API C_CMMLTime 00007 { 00008 public: 00009 C_CMMLTime(void); 00010 ~C_CMMLTime(void); 00011 00012 //Accessors 00013 wstring time(); 00014 00015 //Mutators 00016 void setTime(wstring inTime); 00017 00018 00019 //Temporarily just a string container 00020 protected: 00021 wstring mTime; 00022 };