change: change code style to Linux style except indent.

This commit is contained in:
Mike Solar
2025-08-03 03:09:40 +08:00
parent 65ab76edc8
commit 74f73ab3be
789 changed files with 77113 additions and 68888 deletions
+13 -13
View File
@@ -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_;
};
}