mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
16 lines
261 B
C++
16 lines
261 B
C++
#ifndef NET_GRUNT_GRUNT_HPP
|
|
#define NET_GRUNT_GRUNT_HPP
|
|
|
|
namespace Grunt {
|
|
class ClientLink;
|
|
class ClientResponse;
|
|
template <class>
|
|
class Command;
|
|
class Pending;
|
|
class Timer;
|
|
|
|
extern Command<ClientLink> s_clientCommands[];
|
|
}
|
|
|
|
#endif
|