diff options
| author | Arthur LAURENT <[email protected]> | 2025-05-21 01:37:17 +0200 |
|---|---|---|
| committer | Arthur LAURENT <[email protected]> | 2025-05-21 04:53:30 +0200 |
| commit | 8b4e9f90ba045edb14cb2800c506ee6bc5118cd7 (patch) | |
| tree | ffa4bc5edf9e19d953689fde3cc811382397e786 /tests/projects/c++/modules/class_cmake/src/hello.mpp | |
| parent | bfc0f75db8c238187aa011f522adf9685e023b31 (diff) | |
(C++ modules support) refactor tests
Diffstat (limited to 'tests/projects/c++/modules/class_cmake/src/hello.mpp')
| -rw-r--r-- | tests/projects/c++/modules/class_cmake/src/hello.mpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/c++/modules/class_cmake/src/hello.mpp b/tests/projects/c++/modules/class_cmake/src/hello.mpp new file mode 100644 index 000000000..268964aa3 --- /dev/null +++ b/tests/projects/c++/modules/class_cmake/src/hello.mpp @@ -0,0 +1,11 @@ +export module hello; + +export namespace hello { + class say { + public: + say(int data); + void hello(); + private: + int data_; + }; +} |
