Signed-off-by: Dimitar Dobrev <dpldobrev@yahoo.com>
@ -32,6 +32,11 @@ Hello::Hello ()
//cout << "Ctor!" << "\n";
}
Hello::Hello(const Hello& hello)
{
void Hello::PrintHello(const char* s)
//cout << "PrintHello: " << s << "\n";
@ -65,6 +65,7 @@ public:
};
Hello ();
Hello(const Hello& hello);
void PrintHello(const char* s);
bool test1(int i, float f);