39 lines
1.0 KiB
C++
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_ */
|