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

16 lines
296 B
C
Raw Normal View History

#ifndef ENUM_H
#define ENUM_H
#include <stable.h>
namespace jop {
2017-01-02 15:04:27 +01:00
enum Table { UndefinedTable, FoldersTable, NotesTable, ChangesTable };
2017-01-03 19:42:01 +01:00
// Note "DELETE" is a reserved keyword so we need to use "DEL"
enum HttpMethod { UndefinedMethod, HEAD, GET, PUT, POST, DEL, PATCH };
}
#endif // ENUM_H