| 4 | #include "RegHelpers.h" |
| 5 | |
| 6 | CMultiStringValueDlg::CMultiStringValueDlg(RegistryKey& key, PCWSTR name, bool readOnly) : |
| 7 | m_Key(key), m_Name(name), m_ReadOnly(readOnly) { |
| 8 | } |
| 9 | |
| 10 | const CString& CMultiStringValueDlg::GetValue() const { |
| 11 | return m_Value; |
nothing calls this directly
no outgoing calls
no test coverage detected