WPILibC++  unspecified
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
NamedSendable.h
1 /*
2  * NamedSendable.h
3  *
4  * Created on: Oct 19, 2012
5  * Author: Mitchell Wills
6  */
7 
8 #ifndef NAMEDSENDABLE_H_
9 #define NAMEDSENDABLE_H_
10 
11 #include <string>
12 #include "SmartDashboard/Sendable.h"
13 
19 class NamedSendable : public Sendable {
20  public:
25  virtual std::string GetName() const = 0;
26 };
27 
28 #endif /* NAMEDSENDABLE_H_ */
virtual std::string GetName() const =0
Definition: Sendable.h:15
The interface for sendable objects that gives the sendable a default name in the Smart Dashboard...
Definition: NamedSendable.h:19