Files
lms/database/Video.cpp
T
2014-03-09 10:58:52 +01:00

19 lines
253 B
C++

#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));
}