LogDoctor/logdoctor/tools/craplog/modules/datetime.h

22 lines
350 B
C++

#ifndef DATETIME_H
#define DATETIME_H
#include <string>
#include <vector>
class DateTimeOps
{
public:
DateTimeOps();
static const std::vector<std::string> processDateTime( const std::string& datetime, const std::string& format );
private:
static const std::string convertMonth( const std::string& month );
};
#endif // DATETIME_H