summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
committerlordjaxom <lordjaxom>2004-12-08 18:48:39 +0000
commit5382d18d05d358bb1c313c642395e835aa44a6a0 (patch)
tree2b5ef58620b3640c5b21e8eafe92ee4b266b1d30 /file.h
parenteb2f2c9600e8f69788232582191b141002bcd522 (diff)
downloadvdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.gz
vdr-plugin-text2skin-5382d18d05d358bb1c313c642395e835aa44a6a0.tar.bz2
1.0-pre1v1.0-pre1
Diffstat (limited to 'file.h')
-rw-r--r--file.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/file.h b/file.h
index a941591..7f9a692 100644
--- a/file.h
+++ b/file.h
@@ -1,5 +1,5 @@
/*
- * $Id: file.h,v 1.1 2004/06/02 20:43:05 lordjaxom Exp $
+ * $Id: file.h,v 1.1.1.1 2004/11/19 16:45:31 lordjaxom Exp $
*/
#ifndef VDR_TEXT2SKIN_FILE_H
@@ -10,7 +10,7 @@
class cText2SkinFile {
private:
- string mSkin;
+ std::string mSkin;
protected:
virtual bool Parse(const char *Text) = 0;
@@ -19,9 +19,9 @@ public:
cText2SkinFile(const char *Skin);
virtual ~cText2SkinFile();
- virtual bool Load(const string &Filename);
+ virtual bool Load(const std::string &Filename);
- const string &Skin(void) const { return mSkin; }
+ const std::string &Skin(void) const { return mSkin; }
};
#endif // VDR_TEXT2SKIN_FILE_H