SilentEye 0.4.1

sef/video.cpp

Go to the documentation of this file.
00001 //  This file is part of SilentEye.
00002 //
00003 //  SilentEye is free software: you can redistribute it and/or modify
00004 //  it under the terms of the GNU General Public License as published by
00005 //  the Free Software Foundation, either version 3 of the License, or
00006 //  (at your option) any later version.
00007 //
00008 //  SilentEye is distributed in the hope that it will be useful,
00009 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00011 //  GNU General Public License for more details.
00012 //
00013 //  You should have received a copy of the GNU General Public License
00014 //  along with SilentEye. If not, see <http://www.gnu.org/licenses/>.
00015 
00016 #include "video.h"
00017 
00018 namespace SilentEyeFramework {
00019 
00020     Video::Video()
00021         : Media()
00022     {
00023         setObjectName("Video");
00024         m_type = VIDEO;
00025     }
00026 
00027     Video::Video(const QString& filePath)
00028         : Media(filePath)
00029     {
00030         setObjectName("Video");
00031         m_type = VIDEO;
00032     }
00033 
00034     Video::Video(const Video& aud)
00035         : Media(aud)
00036     {
00037         setObjectName("Video");
00038         m_type = VIDEO;
00039     }
00040 
00041     Video::Video(Video* aud)
00042         : Media(aud)
00043     {
00044         setObjectName("Video");
00045         m_type = VIDEO;
00046     }
00047 
00048     Video::~Video()
00049     {
00050         // NOTHING TO DO
00051     }
00052 
00053 }