OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
regex_path Namespace Reference

Utilities to construct regexes to validate paths. More...

Detailed Description

Utilities to construct regexes to validate paths.

Paths can be constructed like this :

{
using namespace ossia::regex_path;
auto path = device("foo") / "bar" / any_instance("baz");
std::regex_match("foo:/bar/baz.2", path.regex()); // shall return true.
}
Can match nodes that are instances : foo:/bar, foo:/bar.1, etc.
Definition path.hpp:69
Represents a device in a path, e.g. "foo:".
Definition path.hpp:60