3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-31 19:23:45 +01:00
dft_tools/pytriqs/wrap_test/b.hpp
Olivier Parcollet 8c0bf592d0 Fix compilation of py_converter.
- py_converters in hpp files
- add guard to prevent inclusion in the wrapper (to avoid 2
  specialisation of the same py_converter).
2014-05-20 22:24:30 +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;
}