todo-cli
Loading...
Searching...
No Matches
types.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5#include "task.h"
6
7namespace todo {
8using i8 = int8_t;
9using i16 = int16_t;
10using i32 = int32_t;
11using i64 = int64_t;
12
13using u8 = uint8_t;
14using u16 = uint16_t;
15using u32 = uint32_t;
16using u64 = uint64_t;
17
19} // namespace todo
Definition actions.cpp:3
int8_t i8
Definition types.h:8
uint16_t u16
Definition types.h:14
uint8_t u8
Definition types.h:13
int32_t i32
Definition types.h:10
int64_t i64
Definition types.h:11
int16_t i16
Definition types.h:9
todo::Task::Status Status
Definition types.h:18
uint64_t u64
Definition types.h:16
uint32_t u32
Definition types.h:15
Status
Definition task.h:15