mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
* FS.cpp : add const to accessors
This commit is contained in:
parent
464a228106
commit
138d57143a
2 changed files with 4 additions and 4 deletions
6
FS.h
6
FS.h
|
@ -45,12 +45,12 @@ namespace fs {
|
|||
|
||||
/** create subdirs in storage */
|
||||
bool Init(const char* chars, size_t cnt);
|
||||
const std::string & GetRoot() { return this->root; }
|
||||
const std::string & GetName() { return this->name; }
|
||||
const std::string & GetRoot() const { return this->root; }
|
||||
const std::string & GetName() const { return this->name; }
|
||||
/** set directory where to place storage directory */
|
||||
void SetPlace(const std::string & path);
|
||||
/** path to file with given ident */
|
||||
std::string Path(const std::string & ident);
|
||||
std::string Path(const std::string & ident) const;
|
||||
/** remove file by ident */
|
||||
void Remove(const std::string & ident);
|
||||
/** find all files in storage and store list in provided vector */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue