Covellite++  Version: 2.3.0 Revision: ??? Platform: x64 Build: 23:13 04.01.2025
Кроссплатформенный фреймворк для разработки приложений на С++
Загрузка...
Поиск...
Не найдено
Defines.hpp
1
2#pragma once
3#include <functional>
4#include "Events.hpp"
5#include "Vertex.hpp"
6
7namespace covellite
8{
9
10namespace api
11{
12
13using Updater_t = ::std::function<void(const float)>;
14
15template<class T>
16using cbBufferMap_t = ::std::function<bool(T *)>;
17template<class T>
18using Buffer_t = ::std::vector<T>;
19using BinaryData_t = Buffer_t<uint8_t>;
20
21} // namespace api
22
23} // namespace covellite