~x3lectric/xbmc/svn-trunk

« back to all changes in this revision

Viewing changes to xbmc/utils/RssReader.h

  • Committer: jmarshallnz
  • Date: 2006-03-14 21:08:04 UTC
  • Revision ID: svn-v4:568bbfeb-2a22-0410-94d2-cc84cf5bfa90:trunk/XBMC:5279
 - 14-03-2006 changed: All strings/labels are internally UTF-8 now.  Will almost certainly require rescanning the databases if you use a non-Ascii charset.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  CRssReader();
29
29
  virtual ~CRssReader();
30
30
 
31
 
  void Create(IRssObserver* aObserver, const vector<wstring>& aUrl, const vector<int>& times, INT iLeadingSpaces);
 
31
  void Create(IRssObserver* aObserver, const vector<string>& aUrl, const vector<int>& times, INT iLeadingSpaces);
32
32
  bool Parse(LPSTR szBuffer, int iFeed);
33
33
  void getFeed(CStdStringW& strText, LPBYTE& pbColors);
34
34
  void AddTag(const CStdString addTag);
55
55
  INT m_iLeadingSpaces;
56
56
  TiXmlDocument m_xml;
57
57
  std::list<CStdString> m_tagSet;
58
 
  std::vector<wstring> m_vecUrls;
 
58
  std::vector<string> m_vecUrls;
59
59
  std::vector<int> m_vecQueue;
60
60
  bool m_bIsRunning;
61
61
  iconv_t m_iconv;