mirror of
https://gitlab.com/niansa/asbots.git
synced 2025-03-06 20:48:25 +01:00
13 lines
223 B
C++
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
|