lipsync/trunk/Boare.Lib.Vsq/BPPair.cs

60 lines
1.5 KiB
C#

/*
* BPPair.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.
*/
#if JAVA
package com.boare.vsq;
#else
using System;
namespace Boare.Lib.Vsq {
#endif
/// <summary>
/// Stores the paired value of "Clock" and integer. Mainly used in VsqBPList
/// </summary>
#if JAVA
class BPPair implements Comparable<BPPair> {
#else
[Serializable]
public class BPPair : IComparable<BPPair> {
#endif
public int Clock;
public int Value;
/// <summary>
/// このインスタンスと、指定したオブジェクトを比較します
/// </summary>
/// <param name="item"></param>
/// <returns></returns>
public int compareTo( BPPair item ) {
if ( Clock > item.Clock ) {
return 1;
} else if ( Clock < item.Clock ) {
return -1;
} else {
return 0;
}
}
public int CompareTo( BPPair item ) {
return compareTo( item );
}
public BPPair( int clock_, int value_ ) {
Clock = clock_;
Value = value_;
}
}
}