Files
libopenshot/src/TimelineBase.cpp
Frank Dana b9833b71ab Merge pull request #687 from ferdnyc/timeline-inheritance
Fix inheritance of TimelineBase::Clips(), and add unit test
2021-10-24 02:19:19 -04:00

22 lines
408 B
C++

/**
* @file
* @brief Source file for Timeline class
* @author Jonathan Thomas <jonathan@openshot.org>
*
* @ref License
*/
// Copyright (c) 2008-2019 OpenShot Studios, LLC
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include "TimelineBase.h"
using namespace openshot;
/// Constructor for the base timeline
TimelineBase::TimelineBase()
: preview_width(1920),
preview_height(1080) { }