#ifndef KEYTIME_H #define KEYTIME_H #include #include #include struct TimeValue { float time; float value; }; class Keytimes { private: std::vector tvs; public: Keytimes( ); ~Keytimes( ); void AddTimeValue( float, float ); float GetFirstTime( ); float GetLastTime( ); int GetNumKeytimes( ); float GetValue( float ); void Init( ); void PrintTimeValues( ); }; #endif // KEYTIME_H