Application.hh 442 Bytes
/*
 * 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, bool skipPluginLoad = false);

};

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