/* * TimeSigTableEntry.cs * Copyright (c) 2008-2009 kbinani * * This file is part of Boare.Lib.Vsq. * * Boare.Lib.Vsq is free software; you can redistribute it and/or * modify it under the terms of the BSD License. * * Boare.Lib.Vsq is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ using System; namespace Boare.Lib.Vsq{ [Serializable] public class TimeSigTableEntry : IComparable, ICloneable { /// /// クロック数 /// public int Clock; /// /// 拍子の分子 /// public int Numerator; /// /// 拍子の分母 /// public int Denominator; /// /// 何小節目か /// public int BarCount; public TimeSigTableEntry( int clock, int numerator, int denominator, int bar_count ) { Clock = clock; Numerator = numerator; Denominator = denominator; BarCount = bar_count; } public TimeSigTableEntry() { } public override string ToString() { return "{Clock=" + Clock + ", Numerator=" + Numerator + ", Denominator=" + Denominator + ", BarCount=" + BarCount + "}"; } public object Clone() { return new TimeSigTableEntry( Clock, Numerator, Denominator, BarCount ); } public int CompareTo( TimeSigTableEntry item ) { return this.BarCount - item.BarCount; } } }