Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/core/StarAssetPath.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/StarAssetPath.hpp')
-rw-r--r--source/core/StarAssetPath.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/core/StarAssetPath.hpp b/source/core/StarAssetPath.hpp
index 9da30e7..3ca3f60 100644
--- a/source/core/StarAssetPath.hpp
+++ b/source/core/StarAssetPath.hpp
@@ -53,10 +53,11 @@ struct AssetPath {
AssetPath() = default;
AssetPath(String const& path);
-
+ AssetPath(String&& basePath, Maybe<String>&& subPath, DirectivesGroup&& directives);
+ AssetPath(const String& basePath, const Maybe<String>& subPath, const DirectivesGroup& directives);
String basePath;
Maybe<String> subPath;
- NestedDirectives directives;
+ DirectivesGroup directives;
bool operator==(AssetPath const& rhs) const;
};