~sfiorucci/ptools/test_seb

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// $Id$
#ifndef VERSION_H
#define VERSION_H


#include "svnrev.h"
#include <string>


struct Version
{

int revnb;
std::string revstr;
std::string revdate;
std::string revstamp;


Version(); //default constructor

};



#endif