summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormethodus <methodus@web.de>2012-11-04 00:14:37 +0100
committermethodus <methodus@web.de>2012-11-04 00:14:37 +0100
commitf5f58398e340f79d99502d1899952851a78f7a5d (patch)
treee821924960347ed007c0fde49e6f199a2846083e /include
parentddfb5b76371b1d8a84a0577d2c1baf1fbfd27638 (diff)
downloadvdr-plugin-upnp-f5f58398e340f79d99502d1899952851a78f7a5d.tar.gz
vdr-plugin-upnp-f5f58398e340f79d99502d1899952851a78f7a5d.tar.bz2
Added the ability to configure the title of a channel.
Diffstat (limited to 'include')
-rw-r--r--include/plugin.h3
-rw-r--r--include/tools.h1
2 files changed, 2 insertions, 2 deletions
diff --git a/include/plugin.h b/include/plugin.h
index dfd1ab9..beb24bf 100644
--- a/include/plugin.h
+++ b/include/plugin.h
@@ -434,7 +434,6 @@ public:
virtual void Close();
protected:
-
/**
* Called whenever a container was changed.
*
@@ -546,7 +545,7 @@ public:
* false, if not.
*/
virtual bool GetMetadata(const string& uri, cMetadata& metadata) = 0;
-protected:
+
};
} // namespace upnp
diff --git a/include/tools.h b/include/tools.h
index a92b8a2..4c6908d 100644
--- a/include/tools.h
+++ b/include/tools.h
@@ -34,6 +34,7 @@ namespace upnp {
typedef std::list<std::string> StringList;
typedef std::vector<std::string> StringVector;
+ typedef std::map<std::string, std::string> StringMap;
typedef std::map<std::string, uint32_t> IdList;
}