#include <utilities/mvc/mvc_interfaces.h>
Inherited by nitro::ControllerInterface, and nitro::ViewInterface.
Public Member Functions | |
virtual bool | ExecuteCommand (const char *Command, const void *Param1=NULL, const void *Param2=NULL) |
virtual | ~ExecuteCommandInterface () |
Sending commands interface.
Definition at line 26 of file mvc_interfaces.h.
virtual nitro::ExecuteCommandInterface::~ExecuteCommandInterface | ( | ) | [inline, virtual] |
bool nitro::ExecuteCommandInterface::ExecuteCommand | ( | const char * | Command, | |
const void * | Param1 = NULL , |
|||
const void * | Param2 = NULL | |||
) | [virtual] |
Using this function a command to the class can be sent.
Command | - Command's name. | |
Param1 | - First parameter. | |
Param2 | - Second parameter. |
nitro::exception | - An exception of this type is thrown if the error occured. |
Reimplemented in nitro::TopWindow.
Definition at line 12 of file mvc_interfaces.cpp.
Referenced by nitro::Application::OnInit().
{ return( true ); }