1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-23 11:52:59 +02:00

15 lines
205 B
C
Raw Normal View History

#ifndef ENUM_H
#define ENUM_H
#include <stable.h>
namespace jop {
enum ColType { UndefinedType, TextColType, IntColType };
enum Table { UndefinedTable, FoldersTable, NotesTable };
}
#endif // ENUM_H