#include <mvcsettings.h>
Inheritance diagram for MvcSettings:

Static Public Member Functions | |
| static MvcModuleId_t | id () |
| static MvcModuleId_t MvcSettings::id | ( | ) | [inline, static] |
Returns the module's id().
This method must be re-implemented in every sub-class as:
inline static MvcModuleId_t id() { static s_id = generateNewId(); return s_id; }
The id() is very important when combining multiple MVC modules together, where event IDs may overlap. By checking the (unique) id() first, you can ensure that the events are sent and handled correctly.
Reimplemented from MvcCore.
1.5.2