source: nscp/modules/CheckSystem/settings.hpp @ d9cdcb3

0.4.00.4.10.4.2
Last change on this file since d9cdcb3 was 84cdb9b, checked in by Michael Medin <michael@…>, 15 months ago

Cleaned up the API helper classes to make inclusion simpler and more modular.
Also removed some dead code no longer used

  • Property mode set to 100644
File size: 532 bytes
Line 
1#pragma once
2
3
4#include <settings/macros.h>
5
6namespace setting_keys {
7        namespace check_system {
8
9                DEFINE_PATH(SECTION, CHECK_SYSTEM_SECTION);
10                DESCRIBE_SETTING(SECTION, "SYSTEM", "Section for system checks and system settings.");
11
12                const std::wstring PDH_SUBSYSTEM_FAST = _T("fast");
13                const std::wstring PDH_SUBSYSTEM_THREAD_SAFE = _T("thread-safe");
14
15                DEFINE_SETTING_S(PDH_SUBSYSTEM, CHECK_SYSTEM_SECTION, "pdh_subsystem", "fast");
16                DESCRIBE_SETTING_ADVANCED(PDH_SUBSYSTEM, "PDH_SUBSYSTEM", "TODO");
17
18
19        }
20}
Note: See TracBrowser for help on using the repository browser.