A
lgorithmique
N
umérique
D
istribuée
Private GIT Repository
projects
/
loba.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add rules to ease building of loba-dev and loba-stable, which are
[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
("0x00"
10
#include "localversion"
11
);
12
13
const std::string date
14
(__DATE__ " " __TIME__);
15
16
const std::string copyright
17
("Copyright (c) 2010, Arnaud Giersch <arnaud.giersch@univ-fcomte.fr>");
18
19
}
20
21
// Local variables:
22
// mode: c++
23
// End: