Added initial support for directory based packages in class diagrams
This commit is contained in:
11
tests/t00065/module1/module1.h
Normal file
11
tests/t00065/module1/module1.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "submodule1a/submodule1a.h"
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t00065 {
|
||||
struct A {
|
||||
detail::AImpl *pimpl;
|
||||
};
|
||||
}
|
||||
}
|
||||
9
tests/t00065/module1/submodule1a/submodule1a.h
Normal file
9
tests/t00065/module1/submodule1a/submodule1a.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml {
|
||||
namespace t00065 {
|
||||
namespace detail {
|
||||
struct AImpl { };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user