Chi-Tech
EventCodes.h
Go to the documentation of this file.
1#ifndef CHITECH_EVENTCODES_H
2#define CHITECH_EVENTCODES_H
3
4#include <string>
5
6namespace chi
7{
8
9/**Gets the standard even code associated with the given name. If no code
10* is found then 0 (i.e. Unknown Event) is returned.*/
11int GetStandardEventCode(const std::string& event_name);
12
13}
14
15#endif // CHITECH_EVENTCODES_H
int GetStandardEventCode(const std::string &event_name)
Definition: EventCodes.cc:7