Blame view

src/Common/Application.hh 442 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
/*
 * 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:
4e5d4e69   Benjamin Renard   Skip plugin load ...
20
	int main(int argc, char *argv[], std::function<int (int argc, char *argv[], AMDA::helpers::Properties&)> exec, bool skipPluginLoad = false);
fbe3c2bb   Benjamin Renard   First commit
21
22
23
24
25
26

};

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