#include #include "Inline2.h" using namespace std; int main() { Inline2 it(5); cout << it.get_value() << endl; it.set_value(7); cout << it.get_value() << endl; return 0; }