mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Use more filesystem::path where applicable
This commit is contained in:
@@ -253,8 +253,11 @@ public:
|
||||
* \param documentationEntries The DocumentationEntry%s that are used to recursively
|
||||
* test the ghoul::Dictionary that is contained inside. If this list is empty,
|
||||
* only a type check is performed
|
||||
* \param nEntries The exact number of entries that should be in the table. If the
|
||||
* value is not provided, any number (including 0) is allowed
|
||||
*/
|
||||
TableVerifier(std::vector<DocumentationEntry> documentationEntries = {});
|
||||
TableVerifier(std::vector<DocumentationEntry> documentationEntries = {},
|
||||
std::optional<int> nEntries = std::nullopt);
|
||||
|
||||
/**
|
||||
* Checks whether the \p key%'s value is a table (= ghoul::Dictionary) and (if
|
||||
@@ -277,6 +280,7 @@ public:
|
||||
|
||||
/// The documentations passed in the constructor
|
||||
std::vector<DocumentationEntry> documentations;
|
||||
std::optional<int> count;
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user