mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-14 17:00:20 +01:00
16 lines
236 B
C++
16 lines
236 B
C++
#include "test2.hpp"
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
Foo* test = new Foo();
|
|
test->print_function();
|
|
test->print_function2();
|
|
return 0;
|
|
}
|
|
|
|
int Foo::print_function()
|
|
{
|
|
std::cout << "print_function";
|
|
return 0;
|
|
} |