~ubuntu-branches/ubuntu/wily/kid3/wily-proposed

« back to all changes in this revision

Viewing changes to src/core/model/trackdatamodel.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2013-05-11 21:00:00 UTC
  • mfrom: (1.1.15) (2.1.17 sid)
  • Revision ID: package-import@ubuntu.com-20130511210000-4k2q62ldezhgtxjt
Tags: 2.3-2
Upload to unstable 

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
  void setTimeDifferenceCheck(bool enable, int maxDiff);
176
176
 
177
177
  /**
 
178
   * Calculate accuracy of imported track data.
 
179
   * @return accuracy in percent, -1 if unknown.
 
180
   */
 
181
  int calculateAccuracy() const;
 
182
 
 
183
  /**
178
184
   * Get frame for index.
179
185
   * @param index model index
180
186
   * @return frame, 0 if no frame.
217
223
 
218
224
private:
219
225
  ImportTrackDataVector m_trackDataVector;
220
 
  QList<int> m_frameTypes;
 
226
  QList<Frame::ExtendedType> m_frameTypes;
221
227
  bool m_diffCheckEnabled;
222
228
  int m_maxDiff;
223
229
};