OSSIA
Open Scenario System for Interactive Application
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.
}