17 lines
348 B
C++
17 lines
348 B
C++
#include "output_http.h"
|
|
|
|
|
|
namespace Mist {
|
|
class OutHTTP : public HTTPOutput {
|
|
public:
|
|
OutHTTP(Socket::Connection & conn);
|
|
~OutHTTP();
|
|
static void init(Util::Config * cfg);
|
|
static bool listenMode();
|
|
virtual void onFail();
|
|
void onHTTP();
|
|
bool isReadyForPlay();
|
|
};
|
|
}
|
|
|
|
typedef Mist::OutHTTP mistOut;
|