~ubuntu-branches/ubuntu/gutsy/audacity/gutsy-security

« back to all changes in this revision

Viewing changes to src/export/ExportPCM.h

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2007-05-18 12:11:05 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070518121105-onhr7ojai3n5khzt
Tags: 1.3.3-1
* New upstream release
* Added watch file
* debian/patches:
   - updated libmp3lame patch
* debian/control:
   - as suggested upstream, depend on libgtk2.0-dev, otherwise 
     the code fails to build

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
#ifndef __AUDACITY_EXPORTPCM__
12
12
#define __AUDACITY_EXPORTPCM__
13
13
 
14
 
class wxString;
15
 
 
16
 
class AudacityProject;
17
 
class DirManager;
18
 
class WaveTrack;
19
 
class MixerSpec;
20
 
 
21
 
bool ExportPCM(AudacityProject *project,
22
 
               int numChannels, wxString fName,
23
 
               bool selectionOnly, double t0, double t1, 
24
 
               MixerSpec *mixerSpec = NULL);
25
 
 
 
14
class ExportPlugin;
 
15
 
 
16
//----------------------------------------------------------------------------
 
17
// Constructor
 
18
//----------------------------------------------------------------------------
 
19
ExportPlugin *New_ExportPCM();
26
20
 
27
21
#endif
28
22