mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +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;
|
||
|
}
|