You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
22 lines
408 B
C++
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) { }
|
|
|