Rudiments
|
Inherits mvctier.
Public Member Functions | |
mvcview () | |
virtual | ~mvcview () |
void | setRequest (httprequest *req) |
httprequest * | getRequest () |
void | setResponse (httpresponse *resp) |
httpresponse * | getResponse () |
Public Member Functions inherited from mvctier | |
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 mvcview class provides a base class for MVC (Model View Controller) views.
This class is not intended to be used directly, rather you should create children of this class that implements specific view tier functionality for your application, and use them directly.
mvcview::mvcview | ( | ) |
Creates an instance of the mvcview class.
|
virtual |
Deletes this instance of the mvcview class.
httprequest* mvcview::getRequest | ( | ) |
Returns the instance of httprequest set by a previous call to setRequest().
httpresponse* mvcview::getResponse | ( | ) |
Returns the instance of httpresponse set by a previous call to setResponse().
void mvcview::setRequest | ( | httprequest * | req | ) |
Sets the instance of httprequest to use.
void mvcview::setResponse | ( | httpresponse * | resp | ) |
Sets the instance of httpresponse to use.