Fixed problem in DeviceSettings::strParam, returned wrong string
[avr-sim.git] / src / Pin.h
blobda402e1d26c37b69a9ddd245d6d7bea3c989e2bb
1 #ifndef AVR_PIN_H
2 #define AVR_PIN_H
4 #include "CircuitNode.h"
6 namespace avr {
8 class Pin : public CircuitNode {
9 public:
10 Pin(float V = 5.0f, float Z = 1e3f);
11 ~Pin();
13 public:
19 #endif /*AVR_PIN_H*/