1#ifndef _ResistorObject_H_
2#define _ResistorObject_H_
5#include "../BaseIcObject.h"
6#include "../symbols/resistor.c"
11 double resistance = 10.0;
14 void setupFootPins()
override;
32 const ICType getType()
const override {
return ICType::Resistor;}
36 double getResistance();
37 double getAdmittance();
39 bool havePopupWindow()
override {
return true; };
40 const char* popupWindowName()
const override {
return "ResistorObject";}
41 void CreateImGuiForm()
override;
43 void saveToFile(std::ofstream&)
override;
Definition: AsgardClass.h:17
Definition: BaseElectronObject.h:13
Definition: BaseIcObject.h:11
Definition: ResistorObject.h:9