summaryrefslogtreecommitdiff
path: root/TOOL.h
blob: de2c4a2a8bf23d5771388514d4f89f9dc4697a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef TOOL_H
#define TOOL_H

#include "incl.h" 

using namespace std;

class TOOL
{
public:
 static int  string2int( string s_digit ); 
 static long unixtime();
};

#endif