2014-05-20 17:45:16 +02:00
|
|
|
#pragma once
|
2014-05-08 22:15:15 +02:00
|
|
|
#include "./a.hpp"
|
|
|
|
|
|
|
|
/// some function using A
|
2014-05-16 19:35:48 +02:00
|
|
|
inline void print_a2(A const & a) {
|
2014-05-08 22:15:15 +02:00
|
|
|
std::cout << "module B : my a is " << a.x << std::endl;
|
|
|
|
}
|