Hi, actually attaching the file helps.
Simon
#include <string>
class interface
{
public:
virtual ~interface(void) throw() { }
};
class implementation :
public interface
{
std::string somedata;
};
Hi, actually attaching the file helps.
Simon
#include <string>
class interface
{
public:
virtual ~interface(void) throw() { }
};
class implementation :
public interface
{
std::string somedata;
};