mirror of
https://github.com/triqs/dft_tools
synced 2024-10-31 19:23:45 +01:00
8 lines
158 B
C++
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;
|
|
}
|