minor changes

This commit is contained in:
Fabien Corona 2024-06-20 16:34:53 +02:00
parent 47a8701a01
commit 8cffe509fa

View File

@ -353,16 +353,16 @@ public:
class IbisBoardDescription : public IBIS_INPUT
{
public:
IbisComponent( REPORTER* aReporter ) : IBIS_INPUT( aReporter ){};
IbisBoardDescription( REPORTER* aReporter ) : IBIS_INPUT( aReporter ){};
virtual ~IbisBoardDescription(){};
std::string m_name = "";
std::string m_manufacturer = "";
int m_numberofPins;
int m_numberOfPins;
std::vector<IbisBoardPin> m_pins;
bool Check() override;
//bool Check() override;
};