Constructor. @param p_rUserKey Config registry key containing user settings. @param p_pFormsKey Config registry key containing forms position/size. Optional. @param p_rPluginsKey p_rPipelinePluginsKey Config registry key containing pipeline plugins. @param p_COMPluginProvider Object to access COM plugins.
| 1520 | // @param p_COMPluginProvider Object to access COM plugins. |
| 1521 | // |
| 1522 | Settings::Reviser::ReviseInfo::ReviseInfo(RegKey& p_rUserKey, |
| 1523 | RegKey* const p_pFormsKey, |
| 1524 | RegKey& p_rPipelinePluginsKey, |
| 1525 | const COMPluginProvider& p_COMPluginProvider) noexcept |
| 1526 | : m_rUserKey(p_rUserKey), |
| 1527 | m_pFormsKey(p_pFormsKey), |
| 1528 | m_rPipelinePluginsKey(p_rPipelinePluginsKey), |
| 1529 | m_COMPluginProvider(p_COMPluginProvider) |
| 1530 | { |
| 1531 | } |
| 1532 | |
| 1533 | // |
| 1534 | // Constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected