~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-backports

« back to all changes in this revision

Viewing changes to src/import/ImportPlugin.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-18 21:58:19 UTC
  • mfrom: (13.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080218215819-tmbcf1rx238r8gdv
Tags: 1.3.4-1.1ubuntu1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
class TrackFactory;
67
67
class Track;
 
68
class Tags;
68
69
 
69
70
typedef bool (*progress_callback_t)( void *userData, float percent );
70
71
 
129
130
   // the TrackFactory and calling the progress callback every iteration
130
131
   // through the importing loop
131
132
   virtual bool Import(TrackFactory *trackFactory, Track ***outTracks,
132
 
                       int *outNumTracks) = 0;
 
133
                       int *outNumTracks, Tags *tags) = 0;
133
134
 
134
135
   virtual ~ImportFileHandle() { }
135
136
};