14 lines
272 B
C++
14 lines
272 B
C++
#include "output.h"
|
|
|
|
namespace Mist{
|
|
class OutRaw : public Output{
|
|
public:
|
|
OutRaw(Socket::Connection &conn);
|
|
~OutRaw();
|
|
static void init(Util::Config *cfg);
|
|
void sendNext();
|
|
void sendHeader();
|
|
};
|
|
}// namespace Mist
|
|
|
|
typedef Mist::OutRaw mistOut;
|