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

summaryrefslogtreecommitdiff
path: root/source/core/StarAssetPath.hpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-06-24 19:41:52 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-06-24 19:41:52 +1000
commit7bde128a87268751e1f46174a64ffd78b03bf8bc (patch)
treeb27dd239831fa803d019e35f08f209b1d9e091ea /source/core/StarAssetPath.hpp
parent51a9de3af37eb8a6844a2dd5f3f568f3956726db (diff)
DirectivesGroup prototype
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;
};