Initial import from SVN

This commit is contained in:
emeric
2014-03-09 10:58:52 +01:00
commit b6abce0c2f
440 changed files with 30862 additions and 0 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;
};