mirror of
https://github.com/triqs/dft_tools
synced 2025-01-13 22:36:03 +01:00
7 lines
138 B
C++
7 lines
138 B
C++
|
#include "./a.hpp"
|
||
|
|
||
|
/// some function using A
|
||
|
void print_a2(A const & a) {
|
||
|
std::cout << "module B : my a is " << a.x << std::endl;
|
||
|
}
|