https://github.com/ichlubna/modulesandinterfaces
This is a simple example of C++ modules used with abstract class serving as and interface and inherited implementations separated in class definition and implementation file.
https://github.com/ichlubna/modulesandinterfaces
cpp-modules cpp20-modules cppmodules modern-cpp moderncpp modules
Last synced: 4 months ago
JSON representation
This is a simple example of C++ modules used with abstract class serving as and interface and inherited implementations separated in class definition and implementation file.
- Host: GitHub
- URL: https://github.com/ichlubna/modulesandinterfaces
- Owner: ichlubna
- License: mit
- Created: 2025-06-01T15:18:30.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-06-01T15:22:07.000Z (7 months ago)
- Last Synced: 2025-08-04T12:29:14.429Z (5 months ago)
- Topics: cpp-modules, cpp20-modules, cppmodules, modern-cpp, moderncpp, modules
- Language: C++
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple example with C++ modules: abstract class as an interface, inheritance, separate implementation file
```
mkdir build
cd build
cmake .. -G "Ninja"
make
```