Added generate_packages option to class_diagrams

This commit is contained in:
Bartek Kryza
2022-02-18 22:45:48 +01:00
parent 1da3dcb720
commit e8ebaad6c6
5 changed files with 8 additions and 0 deletions

View File

@@ -56,6 +56,8 @@ template <typename T> struct option {
}
}
void operator()(const T &v) { set(v); }
T &operator()() { return value; }
const T &operator()() const { return value; }