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
Prepare next version.
[loba.git]
/
loba_simple.h
1
#ifndef LOBA_SIMPLE_H
2
#define LOBA_SIMPLE_H
3
4
#include "process.h"
5
6
class loba_simple: public process {
7
public:
8
loba_simple(int argc, char* argv[]): process(argc, argv) { }
9
~loba_simple() { }
10
11
private:
12
void load_balance();
13
};
14
15
#endif //!LOBA_SIMPLE_H
16
17
// Local variables:
18
// mode: c++
19
// End: