blob: 130bd09f7b041d1546c84376eb31865b3ca2cf96 (
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 string int2string( int i_int );
static int string2int( string s );
};
#endif
|