~sfiorucci/ptools/test_seb

367 by asaladin
using svn revision number in ptools (1)
1
// $Id$
2
#ifndef VERSION_H
3
#define VERSION_H
4
5
6
#include "svnrev.h"
7
#include <string>
8
9
10
struct Version
11
{
12
13
int revnb;
14
std::string revstr;
15
std::string revdate;
16
std::string revstamp;
17
18
19
Version(); //default constructor
20
21
};
22
23
24
25
#endif