Commit f5d9d09e authored by Simon Richter's avatar Simon Richter Committed by Wayne Stambaugh

Hide EDA_ITEM ctors to prevent direct instantiation of abstract class.

parent 3838082b
...@@ -188,11 +188,14 @@ private: ...@@ -188,11 +188,14 @@ private:
void initVars(); void initVars();
public: protected:
EDA_ITEM( EDA_ITEM* parent, KICAD_T idType ); EDA_ITEM( EDA_ITEM* parent, KICAD_T idType );
EDA_ITEM( KICAD_T idType ); EDA_ITEM( KICAD_T idType );
EDA_ITEM( const EDA_ITEM& base ); EDA_ITEM( const EDA_ITEM& base );
public:
virtual ~EDA_ITEM() { }; virtual ~EDA_ITEM() { };
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment