You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-06 23:56:13 +02:00
15 lines
205 B
C
15 lines
205 B
C
![]() |
#ifndef ENUM_H
|
||
|
#define ENUM_H
|
||
|
|
||
|
#include <stable.h>
|
||
|
|
||
|
namespace jop {
|
||
|
|
||
|
enum ColType { UndefinedType, TextColType, IntColType };
|
||
|
|
||
|
enum Table { UndefinedTable, FoldersTable, NotesTable };
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // ENUM_H
|