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
+18
View File
@@ -0,0 +1,18 @@
#include "VideoTypes.hpp"
#include "FileTypes.hpp"
Video::Video()
{
}
Video::Video(Wt::Dbo::ptr<Path> path)
: _path(path)
{
}
Video::pointer
Video::create(Wt::Dbo::Session& session, Wt::Dbo::ptr<Path> path)
{
return session.add(new Video(path));
}