mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 03:28:07 +00:00
16 lines
193 B
Text
16 lines
193 B
Text
#ifndef _ENUMS_HH
|
|
#define _ENUMS_HH
|
|
|
|
namespace linphone {
|
|
|
|
{{#enums}}
|
|
enum {{name}} {
|
|
{{#values}}
|
|
{{name}}{{#notLast}},{{/notLast}}
|
|
{{/values}}
|
|
};
|
|
|
|
{{/enums}}
|
|
};
|
|
|
|
#endif //_ENUMS_HH
|