2014-08-12 15:17:57 -04:00
|
|
|
#ifndef $classname_H
|
|
|
|
|
#define $classname_H
|
2013-12-15 18:30:16 -05:00
|
|
|
|
2014-08-12 15:17:57 -04:00
|
|
|
#include "WPILib.h"
|
|
|
|
|
|
|
|
|
|
class $classname: public Trigger
|
2014-02-25 18:43:40 -05:00
|
|
|
{
|
|
|
|
|
public:
|
2014-08-12 15:17:57 -04:00
|
|
|
$classname();
|
|
|
|
|
bool Get();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|