change: change code style to Linux style except indent.
This commit is contained in:
@@ -23,26 +23,26 @@
|
||||
|
||||
#include "node/output/track/track.h"
|
||||
|
||||
namespace olive {
|
||||
|
||||
class TimelineCoordinate
|
||||
namespace olive
|
||||
{
|
||||
|
||||
class TimelineCoordinate {
|
||||
public:
|
||||
TimelineCoordinate();
|
||||
TimelineCoordinate(const rational& frame, const Track::Reference& track);
|
||||
TimelineCoordinate(const rational& frame, const Track::Type& track_type, const int& track_index);
|
||||
TimelineCoordinate();
|
||||
TimelineCoordinate(const rational &frame, const Track::Reference &track);
|
||||
TimelineCoordinate(const rational &frame, const Track::Type &track_type,
|
||||
const int &track_index);
|
||||
|
||||
const rational& GetFrame() const;
|
||||
const Track::Reference& GetTrack() const;
|
||||
const rational &GetFrame() const;
|
||||
const Track::Reference &GetTrack() const;
|
||||
|
||||
void SetFrame(const rational& frame);
|
||||
void SetTrack(const Track::Reference& track);
|
||||
void SetFrame(const rational &frame);
|
||||
void SetTrack(const Track::Reference &track);
|
||||
|
||||
private:
|
||||
rational frame_;
|
||||
|
||||
Track::Reference track_;
|
||||
rational frame_;
|
||||
|
||||
Track::Reference track_;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user