WIP: adding service files, still not working

This commit is contained in:
emeric
2014-04-03 09:19:35 +02:00
parent 10d1464ca2
commit 886b3221f5
24 changed files with 476 additions and 102 deletions
+23
View File
@@ -0,0 +1,23 @@
#include <Wt/WApplication>
#include <Wt/WLineEdit>
#include "audio/AudioWidget.hpp"
#include "video/VideoWidget.hpp"
class LmsApplication : public Wt::WApplication
{
public:
LmsApplication(const Wt::WEnvironment& env);
private:
void handleSearch();
Wt::WLineEdit* _searchEdit;
AudioWidget* _audioWidget;
VideoWidget* _videoWidget;
};