summaryrefslogtreecommitdiffstats
path: root/cc/test/paths.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/test/paths.h')
-rw-r--r--cc/test/paths.h22
1 files changed, 12 insertions, 10 deletions
diff --git a/cc/test/paths.h b/cc/test/paths.h
index 07b7a64..f48177e 100644
--- a/cc/test/paths.h
+++ b/cc/test/paths.h
@@ -7,18 +7,20 @@
namespace cc {
-enum {
- PATH_START = 5000,
-
- // Valid only in development and testing environments.
- DIR_TEST_DATA,
-
- PATH_END
+class CCPaths {
+ public:
+ enum {
+ PATH_START = 5000,
+
+ // Valid only in development and testing environments.
+ DIR_TEST_DATA,
+ PATH_END
+ };
+
+ // Call once to register the provider for the path keys defined above.
+ static void RegisterPathProvider();
};
-// Call once to register the provider for the path keys defined above.
-void RegisterPathProvider();
-
} // namespace cc
#endif // CC_TEST_PATHS_H_