diff options
Diffstat (limited to 'server-v1/source/EpistmoolServer/fwd.hpp')
-rw-r--r-- | server-v1/source/EpistmoolServer/fwd.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/server-v1/source/EpistmoolServer/fwd.hpp b/server-v1/source/EpistmoolServer/fwd.hpp new file mode 100644 index 0000000..dfbcb91 --- /dev/null +++ b/server-v1/source/EpistmoolServer/fwd.hpp @@ -0,0 +1,21 @@ +#pragma once + +#include "./Protocol/fwd.hpp" +#include "./Workspace/fwd.hpp" + +namespace Epistmool::Server +{ + +// Connection.hpp +struct ConnectionId; +class ConnectionManager; + +// Server.hpp +class Server; + +// Session.hpp +struct SessionId; +class Session; +class SessionManager; + +} // namespace Epistmool::Server |