3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-31 19:23:45 +01:00
dft_tools/test/pytriqs/wrap_test/b.hpp
2014-05-30 23:08:32 +02:00

8 lines
158 B
C++

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