Blame view

src/Common/Application.hh 413 Bytes
fbe3c2bb   Benjamin Renard   First commit
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
26
/*
 * Main.hh
 *
 *  Created on: Feb 1, 2013
 *      Author: f.casimir
 */

#ifndef MAIN_HH_
#define MAIN_HH_

#include <functional>

#include "Properties.hh"

namespace AMDA {
namespace Common {

class Application {
public:
	int main(int argc, char *argv[], std::function<int (int argc, char *argv[], AMDA::helpers::Properties&)> exec);

};

} /* namespace Common */
} /* namespace AMDA */
#endif /* MAIN_HH_ */