refs #209, added remove file method to application context and some finetuning of the file methods

This commit is contained in:
Klaus Basan
2014-04-15 02:58:28 +02:00
parent 284a130669
commit 7e45a92969
5 changed files with 29 additions and 0 deletions

View File

@@ -43,6 +43,9 @@ namespace BlackCore
//! \copydoc IContextApplication::readFromFile
virtual QString readFromFile(const QString &fileName) override;
//! \copydoc IContextApplication::removeFile
virtual bool removeFile(const QString &fileName) override;
protected:
//! Constructor
CContextApplicationProxy(CRuntimeConfig::ContextMode mode, CRuntime *runtime) : CContextApplicationBase(mode, runtime), m_dBusInterface(nullptr) {}