From 8a4168bd0d2e468604755398f18be1fba9046aa0 Mon Sep 17 00:00:00 2001 From: mrwastl Date: Tue, 4 May 2010 21:03:19 +0200 Subject: initial git upload, based on graphlcd-0.2.0-pre2 --- alias.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 alias.h (limited to 'alias.h') diff --git a/alias.h b/alias.h new file mode 100644 index 0000000..a691cb1 --- /dev/null +++ b/alias.h @@ -0,0 +1,28 @@ +/* + * GraphLCD plugin for the Video Disk Recorder + * + * alias.h - alias class for converting channel id to its alias name + * + * This file is released under the GNU General Public License. Refer + * to the COPYING file distributed with this package. + * + * (c) 2001-2004 Carsten Siebholz + * (c) 2004 Andreas Regel + */ + +#ifndef _GRAPHLCD_ALIAS_H_ +#define _GRAPHLCD_ALIAS_H_ + +#include +#include + +class cChannelAliasList +{ +private: + std::map mAliases; +public: + bool Load(const std::string & CfgPath); + std::string GetAlias(const std::string & ChannelID) const; +}; + +#endif -- cgit v1.2.3