1
0
Fork 0
mirror of https://gitlab.com/niansa/asbots.git synced 2025-03-06 20:48:25 +01:00
asbots/incompletes.hpp
2021-06-21 00:29:37 +02:00

13 lines
223 B
C++

#ifndef _INCOMPLETES_HPP
#define _INCOMPLETES_HPP
#include <memory>
struct User;
struct Channel;
struct Cache;
struct NetworkInfo;
using u_User = std::unique_ptr<User>;
using u_Channel = std::unique_ptr<Channel>;
#endif