Added a FrameRate() method to the timeline, to get or set the fps. Also, added a unit test for that, and refactored some header files to be alphabetical.

This commit is contained in:
Jonathan Thomas
2012-10-10 01:07:47 -05:00
parent 9d01dd7900
commit 60e645da61
7 changed files with 47 additions and 26 deletions

View File

@@ -2,7 +2,7 @@
using namespace openshot;
ImageReader::ImageReader(string path) : path(path), is_open(false)
ImageReader::ImageReader(string path) throw(InvalidFile) : path(path), is_open(false)
{
// Init FileInfo struct (clear all values)
InitFileInfo();