dispmap/svobject.h
2014-07-25 12:32:46 +04:00

19 lines
183 B
C++

#ifndef SVOBJECT_H
#define SVOBJECT_H
#include "svfigure.h"
class SvFigure;
class SvObject
{
protected:
SvFigure *m_figures;
public:
SvObject();
};
#endif // SVOBJECT_H