Refactored class diagram model to keep namespace structure

This commit is contained in:
Bartek Kryza
2022-02-18 21:56:15 +01:00
parent 97bf705047
commit 1da3dcb720
10 changed files with 250 additions and 60 deletions

View File

@@ -36,6 +36,11 @@ class class_ : public common::model::element,
public:
class_(const std::vector<std::string> &using_namespaces);
class_(const class_ &) = delete;
class_(class_ &&) = default;
class_ &operator=(const class_ &) = delete;
class_ &operator=(class_ &&) = default;
bool is_struct() const;
void is_struct(bool is_struct);