|
|||
|
|||
|


Public Member Functions | |
| ModuleClose (InspIRCd *Me) | |
| virtual | ~ModuleClose () |
| virtual Version | GetVersion () |
| Returns the version number of a Module. | |
Private Attributes | |
| cmd_close * | newcommand |
Definition at line 69 of file m_close.cpp.
|
|
Definition at line 73 of file m_close.cpp. References InspIRCd::AddCommand(), newcommand, and Module::ServerInstance. 00074 : Module(Me) 00075 { 00076 // Create a new command 00077 newcommand = new cmd_close(ServerInstance); 00078 ServerInstance->AddCommand(newcommand); 00079 }
|
|
|
Definition at line 81 of file m_close.cpp.
|
|
|
Returns the version number of a Module. The method should return a Version object with its version information assigned via Version::Version Reimplemented from Module. Definition at line 85 of file m_close.cpp. References API_VERSION, and VF_VENDOR. 00086 { 00087 return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION); 00088 }
|
|
|
Definition at line 71 of file m_close.cpp. Referenced by ModuleClose(). |