WPILibC++  unspecified
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
LiveWindowSendable.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) FIRST 2012-2016. 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 the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #ifndef LIVEWINDOWSENDABLE_H_
9 #define LIVEWINDOWSENDABLE_H_
10 
11 #include "SmartDashboard/Sendable.h"
12 
18 class LiveWindowSendable : public Sendable {
19  public:
24  virtual void UpdateTable() = 0;
25 
30  virtual void StartLiveWindowMode() = 0;
31 
36  virtual void StopLiveWindowMode() = 0;
37 };
38 
39 #endif /* LIVEWINDOWSENDABLE_H_ */
virtual void StartLiveWindowMode()=0
Start having this sendable object automatically respond to value changes reflect the value on the tab...
virtual void StopLiveWindowMode()=0
Stop having this sendable object automatically respond to value changes.
Live Window Sendable is a special type of object sendable to the live window.
Definition: LiveWindowSendable.h:18
Definition: Sendable.h:15
virtual void UpdateTable()=0
Update the table for this sendable object with the latest values.