Calling it from main is
Extra R("dream.txt");
R.show();
but how would I call it from a different class.




Posted 19 May 2011 - 12:46 PM
#include "extra.h"
class newc
{
public:
void method();
};
void newc::method()
{
Extra R("dream.txt");
R.show();
}
|
|
Query failed: connection to localhost:3312 failed (errno=111, msg=Connection refused).
|
