summaryrefslogtreecommitdiff
path: root/rotord/rotord.h
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/rotord.h')
-rw-r--r--rotord/rotord.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/rotord/rotord.h b/rotord/rotord.h
index 41c97d4..6def0a8 100644
--- a/rotord/rotord.h
+++ b/rotord/rotord.h
@@ -38,6 +38,8 @@ using Poco::Util::OptionSet;
using Poco::Util::OptionCallback;
using Poco::Util::HelpFormatter;
+#include "vampHost.h"
+
class RotorRequestHandler: public HTTPRequestHandler
{
public:
@@ -47,6 +49,15 @@ class RotorRequestHandler: public HTTPRequestHandler
std::string _format;
};
+class RotorAudioAnalyserHandler: public HTTPRequestHandler
+{
+ public:
+ RotorAudioAnalyserHandler(const std::string& format);
+ void handleRequest(HTTPServerRequest& request,HTTPServerResponse& response);
+ private:
+ std::string _format;
+};
+
class RotorRequestHandlerFactory: public HTTPRequestHandlerFactory
{
public: