Constructor. @param p_DescriptionStringResourceID ID of string resource containing plugin description. @param p_HelpTextStringResourceID ID of string resource containing plugin help text.
| 54 | // @param p_HelpTextStringResourceID ID of string resource containing plugin help text. |
| 55 | // |
| 56 | InternalPlugin::InternalPlugin(const unsigned short p_DescriptionStringResourceID, |
| 57 | const unsigned short p_HelpTextStringResourceID) |
| 58 | : Plugin(), |
| 59 | m_DescriptionString(MAKEINTRESOURCEW(p_DescriptionStringResourceID)), |
| 60 | m_HelpTextString(MAKEINTRESOURCEW(p_HelpTextStringResourceID)) |
| 61 | { |
| 62 | } |
| 63 | |
| 64 | } // namespace Plugins |
| 65 |
nothing calls this directly
no outgoing calls
no test coverage detected