/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
map/notifications/notification_queue_storage.hpp
17 строк
338 B
Arsentiy Milchakov
Notification manager skeleton + small fix for eye
31 окт 2018, 16:01
31 окт 2018, 16:01
9308c99
Код
Авторство
О чём код?
#pragma once #include <cstdint> #include <string> #include <vector> namespace notifications { class QueueStorage { public: static std::string GetFilePath(); static std::string GetNotificationsDir(); static bool Save(std::vector<int8_t> const & src); static bool Load(std::vector<int8_t> & dst); }; } // namespace notifications