diff options
Diffstat (limited to 'include/plugin.h')
-rw-r--r-- | include/plugin.h | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/include/plugin.h b/include/plugin.h index 6b4a94d..6896ebf 100644 --- a/include/plugin.h +++ b/include/plugin.h @@ -23,38 +23,38 @@ namespace property { namespace object { - static const char* KEY_OBJECTID = "@id"; - static const char* KEY_PARENTID = "@parentID"; - static const char* KEY_TITLE = "dc:title"; - static const char* KEY_CREATOR = "dc:creator"; - static const char* KEY_CLASS = "upnp:class"; - static const char* KEY_RESTRICTED = "@restricted"; - static const char* KEY_CHILD_COUNT = "@childCount"; - static const char* KEY_DESCRIPTION = "dc:description"; - static const char* KEY_LONG_DESCRIPTION = "upnp:longDescription"; - static const char* KEY_DATE = "dc:date"; - static const char* KEY_LANGUAGE = "dc:language"; - static const char* KEY_CHANNEL_NR = "upnp:channelNr"; - static const char* KEY_CHANNEL_NAME = "upnp:channelName"; - static const char* KEY_SCHEDULED_START = "upnp:scheduledStartTime"; - static const char* KEY_SCHEDULED_END = "upnp:scheduledEndTime"; - static const char* KEY_OBJECT_UPDATE_ID = "upnp:objectUpdateID"; - static const char* KEY_CONTAINER_UPDATE_ID= "upnp:containerUpdateID"; + static const char KEY_OBJECTID[] = "@id"; + static const char KEY_PARENTID[] = "@parentID"; + static const char KEY_TITLE[] = "dc:title"; + static const char KEY_CREATOR[] = "dc:creator"; + static const char KEY_CLASS[] = "upnp:class"; + static const char KEY_RESTRICTED[] = "@restricted"; + static const char KEY_CHILD_COUNT[] = "@childCount"; + static const char KEY_DESCRIPTION[] = "dc:description"; + static const char KEY_LONG_DESCRIPTION[] = "upnp:longDescription"; + static const char KEY_DATE[] = "dc:date"; + static const char KEY_LANGUAGE[] = "dc:language"; + static const char KEY_CHANNEL_NR[] = "upnp:channelNr"; + static const char KEY_CHANNEL_NAME[] = "upnp:channelName"; + static const char KEY_SCHEDULED_START[] = "upnp:scheduledStartTime"; + static const char KEY_SCHEDULED_END[] = "upnp:scheduledEndTime"; + static const char KEY_OBJECT_UPDATE_ID[] = "upnp:objectUpdateID"; + static const char KEY_CONTAINER_UPDATE_ID[]= "upnp:containerUpdateID"; } namespace resource { - static const char* KEY_RESOURCE = "res"; - static const char* KEY_PROTOCOL_INFO = "res@protocolInfo"; - static const char* KEY_SIZE = "res@size"; - static const char* KEY_DURATION = "res@duration"; - static const char* KEY_SAMPLE_FREQUENCY = "res@sampleFrequency"; - static const char* KEY_RESOLUTION = "res@resolution"; - static const char* KEY_BITRATE = "res@bitrate"; - static const char* KEY_BITS_PER_SAMPLE = "res@bitsPerSample"; - static const char* KEY_NR_AUDIO_CHANNELS = "res@nrAudioChannels"; - static const char* KEY_COLOR_DEPTH = "res@colorDepth"; + static const char KEY_RESOURCE[] = "res"; + static const char KEY_PROTOCOL_INFO[] = "res@protocolInfo"; + static const char KEY_SIZE[] = "res@size"; + static const char KEY_DURATION[] = "res@duration"; + static const char KEY_SAMPLE_FREQUENCY[] = "res@sampleFrequency"; + static const char KEY_RESOLUTION[] = "res@resolution"; + static const char KEY_BITRATE[] = "res@bitrate"; + static const char KEY_BITS_PER_SAMPLE[] = "res@bitsPerSample"; + static const char KEY_NR_AUDIO_CHANNELS[] = "res@nrAudioChannels"; + static const char KEY_COLOR_DEPTH[] = "res@colorDepth"; } |