WPILibC++  trunk
Potentiometer.h
1 #ifndef _POTENTIOMETER_H
2 #define _POTENTIOMETER_H
3 
4 #include "PIDSource.h"
5 
6 class Potentiometer : public PIDSource {
7 public:
8  virtual double Get() = 0;
9 };
10 
11 #endif