]> AND Private Git Repository - loba.git/blob - version.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
5f28d312d94c0ffbcd8748f79b2083112189c02f
[loba.git] / version.cpp
1 #include "version.h"
2
3 namespace version {
4
5     const std::string name
6     ("Asynchronous Load Balancing");
7
8     const std::string num
9     ("0.3pre"
10 #include "localversion"
11      );
12
13     const std::string date
14     (__DATE__ " " __TIME__);
15
16     const std::string copyright
17     ("Copyright (c) 2010-2012, Arnaud Giersch <arnaud.giersch@univ-fcomte.fr>");
18
19 }
20
21 // Local variables:
22 // mode: c++
23 // End: