Now you can download a copy of these docs so you can use them offline! Download now
Threshold.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) FIRST 2008. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
5 /*----------------------------------------------------------------------------*/
6 
7 #ifndef __THRESHOLD_H__
8 #define __THRESHOLD_H__
9 
16 class Threshold
17 {
18 public:
19  int plane1Low;
20  int plane1High;
21  int plane2Low;
22  int plane2High;
23  int plane3Low;
24  int plane3High;
25  Threshold(int plane1Low, int plane1High,
26  int plane2Low, int plane2High,
27  int plane3Low, int plane3High);
28 };
29 
30 #endif

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6