Skip to content

Commit 0d7d3be

Browse files
Added enum defined for content type of application
1 parent 3f7daa0 commit 0d7d3be

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#ifndef CONTENT_TYPES_HXX
2+
#define CONTENT_TYPES_HXX
3+
4+
#include <cstdint>
5+
using std::uint8_t;
6+
namespace Lazyboard::clipboard {
7+
enum class ContentTypes : uint8_t {
8+
TEXT,
9+
HTML,
10+
URL,
11+
PATH,
12+
IMAGE,
13+
};
14+
}
15+
16+
#endif

0 commit comments

Comments
 (0)