18 lines
224 B
C++
18 lines
224 B
C++
/*
|
|
* Trigger.h
|
|
*
|
|
* Created on: Mar 11, 2014
|
|
* Author: jonny
|
|
*/
|
|
|
|
#ifndef TRIGGER_H_
|
|
#define TRIGGER_H_
|
|
|
|
namespace controller {
|
|
|
|
enum Trigger {RefreshTrigger};
|
|
|
|
} /* namespace controller */
|
|
|
|
#endif /* TRIGGER_H_ */
|