Untitled

 avatar
unknown
plain_text
2 years ago
230 B
2
Indexable
class RainXml
{
public:
RainXml();
 static RainXml* getInstance();
QString writeToXml(/*passing rain data*/);

private:
 static RainXml* instance;
bool checkStationCode(QString stn) const;
 QRegularExpression re;

};
Editor is loading...