mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-14 17:00:20 +01:00
10 lines
126 B
C++
10 lines
126 B
C++
#include <string>
|
|
#include <iostream>
|
|
|
|
class Foo
|
|
{
|
|
public:
|
|
int print_function();
|
|
int print_function2(){return 0;};
|
|
};
|