1234567891011121314151617181920 |
- /*
- * SystemProperties.h
- *
- * Created on: Aug 19, 2017
- * Author: guoxs
- */
- #ifndef _OS_SYSTEM_PROPERTIES_H_
- #define _OS_SYSTEM_PROPERTIES_H_
- class SystemProperties {
- public:
- static int setInt(const char *key, const int value);
- static int getInt(const char *key, int *value, const int defValue);
- static int setString(const char *key, const char *value);
- static int getString(const char *key, char *value, const char *defValue);
- };
- #endif /* _OS_SYSTEM_PROPERTIES_H_ */
|