mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-11 18:24:43 +02:00
16 lines
296 B
C++
Executable File
16 lines
296 B
C++
Executable File
#ifndef ENUM_H
|
|
#define ENUM_H
|
|
|
|
#include <stable.h>
|
|
|
|
namespace jop {
|
|
|
|
enum Table { UndefinedTable, FoldersTable, NotesTable, ChangesTable };
|
|
|
|
// Note "DELETE" is a reserved keyword so we need to use "DEL"
|
|
enum HttpMethod { UndefinedMethod, HEAD, GET, PUT, POST, DEL, PATCH };
|
|
|
|
}
|
|
|
|
#endif // ENUM_H
|