This repository has been archived on 2018-12-13. You can view files and clone it, but cannot push or open issues or pull requests.
arma-flow/src/executor.hpp

29 lines
451 B
C++

//
// arma-flow/executor.hpp
//
// @author CismonX
//
#pragma once
namespace flow
{
/// Forward declaration.
class factory;
/// Controls the execution of this program.
class executor
{
/// The factory instance.
factory* factory_;
public:
/**
* Default constructor.
*/
explicit executor();
/// Do execute.
void execute(int argc, char** argv) const;
};
}