20 lines
331 B
C++
20 lines
331 B
C++
#ifndef RESISTOR_H
|
|
#define RESISTOR_H
|
|
|
|
#include "AnalogComponent.h"
|
|
|
|
class Resistor : public AnalogComponent {
|
|
public:
|
|
static Resistor* create(Library* library, const Name& name);
|
|
|
|
protected:
|
|
void _postCreate();
|
|
|
|
private:
|
|
|
|
Resistor(Library* library, const Name& name);
|
|
};
|
|
|
|
|
|
#endif // RESISTOR_H
|