NAP
sequencetracksegmentduration.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4 
5 #pragma once
6 
7 // Local Includes
8 #include "sequencetracksegment.h"
9 
10 namespace nap
11 {
13 
15  {
16  RTTI_ENABLE(SequenceTrackSegment)
17  public:
18  // Default Constructor & destructor
19  SequenceTrackSegmentDuration() = default;
20  virtual ~SequenceTrackSegmentDuration() = default;
21 
22  double mDuration = 1.0;
23  };
24 }
nap::SequenceTrackSegment
Definition: sequencetracksegment.h:19
nap
Definition: templateapp.h:17
nap::SequenceTrackSegmentDuration
Definition: sequencetracksegmentduration.h:14