Rudiments
|
Inherits object.
Inherited by mvccontroller, mvcdao, mvcservice, and mvcview.
Public Member Functions | |
mvctier () | |
virtual | ~mvctier () |
virtual const char * | getType () |
void | setProperties (mvcproperties *prop) |
mvcproperties * | getProperties () |
void | setSecurity (mvcsecurity *sec) |
mvcsecurity * | getSecurity () |
Public Member Functions inherited from object | |
virtual | ~object () |
The mvctier class provides a base class for the tiers of an MVC (Model View Controller) application, and provides methods and functionality that is common to all tiers.
This class is not intended to be used directly, nor are its direct children: mvcservice, mvcdao, mvcview, and mvccontroller. Rather, you should create children of those classes implementing specific MVC functionality for your application, and use them directly.
mvctier::mvctier | ( | ) |
Creates an instance of the mvctier class.
|
virtual |
Deletes this instance of the mvctier class.
mvcproperties* mvctier::getProperties | ( | ) |
Returns the instance of mvcproperties set by a previous call to setProperties().
mvcsecurity* mvctier::getSecurity | ( | ) |
Returns the instance of mvcsecurity set by a previous call to setSecurity().
|
virtual |
Returns "mvctier" but should be overridden by child classes to return a more specific type.
void mvctier::setProperties | ( | mvcproperties * | prop | ) |
Sets the instance of mvcproperties to use.
void mvctier::setSecurity | ( | mvcsecurity * | sec | ) |
Sets the instance of mvcsecurity to use.