Files
GoldenCheetah/src/LocalFileStore.h
Mark Liversedge 338dd4e4f1 Local Store Name
.. name() now returns "Local Store <folder>"
2015-10-04 21:05:06 +01:00

61 lines
1.7 KiB
C++

/*
* Copyright (c) 2015 Joern Rischmueller (joern.rm@gmail.com)
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc., 51
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef GC_LocalFileStore_h
#define GC_LocalFileStore_h
#include "FileStore.h"
class LocalFileStore : public FileStore {
Q_OBJECT
public:
LocalFileStore(Context *context);
~LocalFileStore();
QString name() { return (tr("Local Store ") + home()); }
// open/connect and close/disconnect
bool open(QStringList &errors);
bool close();
// home directory
QString home();
// write a file
bool writeFile(QByteArray &data, QString remotename);
// read a file
bool readFile(QByteArray *data, QString remotename);
// create a folder
bool createFolder(QString path);
// dirent style api
FileStoreEntry *root() { return root_; }
QList<FileStoreEntry*> readdir(QString path, QStringList &errors);
private:
Context *context;
FileStoreEntry *root_;
};
#endif