Unit tests for RemoteList are now ready
[irwi] / src / remotelist.h
index 4650c09..28481a3 100644 (file)
@@ -13,12 +13,9 @@ public:
     RemoteList();
     RemoteList(const RemoteList &);
     RemoteList(QDomDocument &);
-    RemoteList(const QString &xmlFile);
-    RemoteList(QIODevice &);
     ~RemoteList();
     
     void setContent(QDomDocument &);
-    void setContent(const QString &xmlFile);
 
     // Returns false if document is not set or it's invalid
     bool isValid();
@@ -28,7 +25,6 @@ public:
     QList<Model> models(const QString &manufacturer);
 
 private:
-    void parse(const QString &xmlFile);
     void parse(QDomDocument &doc);
     QStringList parseMfgs(QDomElement &charEl);
     QList<Model> parseModels(QDomElement &mfgEl);