|
@@ -52,12 +52,15 @@ PUBLISHED:
|
|
|
Files _files;
|
|
Files _files;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
- DSearchPath();
|
|
|
|
|
|
|
+ DSearchPath() = default;
|
|
|
DSearchPath(const std::string &path, const std::string &separator = std::string());
|
|
DSearchPath(const std::string &path, const std::string &separator = std::string());
|
|
|
DSearchPath(const Filename &directory);
|
|
DSearchPath(const Filename &directory);
|
|
|
- DSearchPath(const DSearchPath ©);
|
|
|
|
|
- void operator = (const DSearchPath ©);
|
|
|
|
|
- ~DSearchPath();
|
|
|
|
|
|
|
+ DSearchPath(const DSearchPath ©) = default;
|
|
|
|
|
+ DSearchPath(DSearchPath &&from) = default;
|
|
|
|
|
+ ~DSearchPath() = default;
|
|
|
|
|
+
|
|
|
|
|
+ DSearchPath &operator = (const DSearchPath ©) = default;
|
|
|
|
|
+ DSearchPath &operator = (DSearchPath &&from) = default;
|
|
|
|
|
|
|
|
void clear();
|
|
void clear();
|
|
|
void append_directory(const Filename &directory);
|
|
void append_directory(const Filename &directory);
|