Hi
I am getting error 'interface' does not mean a type at following line:
Can anybody figure out what this mean?
I am getting error 'interface' does not mean a type at following line:
Code:
interface IEntry : public Tools::IObject
{
public:
virtual id_type getIdentifier() const = 0;
virtual void getShape(IShape** out) const = 0;
virtual ~IEntry() {}
};
Comment