This repository has been archived on 2025-03-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
jmtpfs/src/MtpStorage.h
Jason Ferrara e88ca0973b Initial import from git.
Git somehow ate the original repository, so history before
this import is lost.
2012-05-09 14:17:16 +00:00

39 lines
1.0 KiB
C++

/*
* MtpStorage.h
*
* Author: Jason Ferrara
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 3 as published by the Free Software Foundation.
*
* This software 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 library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02111-1301, USA.
* licensing@fsf.org
*/
#ifndef MTPSTORAGE_H_
#define MTPSTORAGE_H_
#include "MtpFolder.h"
class MtpStorage : public MtpFolder
{
public:
MtpStorage(MtpDevice& device, MtpMetadataCache& cache, uint32_t id);
void Remove();
void Rename(MtpNode& newParent, const std::string& newName);
};
#endif /* MTPSTORAGE_H_ */