refs #207, added remote file read/write

* write simconnect.cfg either local or remote
* update in GUI to use new methods
This commit is contained in:
Klaus Basan
2014-04-14 12:30:29 +02:00
parent 17a6607781
commit d58be30600
7 changed files with 85 additions and 4 deletions

View File

@@ -111,6 +111,12 @@ namespace BlackCore
//! A component has changed its state
virtual void notifyAboutComponentChange(uint component, uint action) = 0;
//! Remote enable version of writing a text file
virtual bool writeToFile(const QString &fileName, const QString &content) = 0;
//! Remote enable version of reading a text file
virtual QString readFromFile(const QString &fileName) = 0;
};
}