3
0
mirror of https://github.com/triqs/dft_tools synced 2024-11-01 03:33:50 +01:00
dft_tools/pytriqs/wrap_test/b.hpp

7 lines
138 B
C++
Raw Normal View History

#include "./a.hpp"
/// some function using A
void print_a2(A const & a) {
std::cout << "module B : my a is " << a.x << std::endl;
}