Page MenuHomec4science

ApplicationInterface.hpp
No OneTemporary

File Metadata

Created
Sun, May 19, 06:40

ApplicationInterface.hpp

/*!
* \brief The ApplicationInterface class provides an interface for
* program wrapper which only require to have one object constructed
* and its run() method called.
*/
class ApplicationInterface
{
public:
/*!
* \brief Destructor.
*/
virtual ~ApplicationInterface() ;
/*!
* \brief Runs the application, with all its
* functionalities.
* \return the exit code.
*/
virtual int run() = 0 ;
} ;

Event Timeline