C++ custom property store key possible ?
Can we have as many PropertyStoreKey as we wish. or Its fixed as below
typedef enum { DEVICE_ID = 0, DEVICE_NAME = 1, APP_ID = 2, APP_NAME = 3, DEFAULT_LANG = 4, SUPPORTED_LANGS = 5, DESCRIPTION = 6, MANUFACTURER = 7, DATE_OF_MANUFACTURE = 8, MODEL_NUMBER = 9, SOFTWARE_VERSION = 10, AJ_SOFTWARE_VERSION = 11, HARDWARE_VERSION = 12, SUPPORT_URL = 13, NUMBER_OF_KEYS = 14 } PropertyStoreKey;
Android is allowing us to have custom property store. But C++ seems to restrict to above enum.
Kindly shed some light.