mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 16:19:43 +02:00
25 lines
499 B
C++
25 lines
499 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Printing.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_PRINTING__
|
|
#define __AUDACITY_PRINTING__
|
|
|
|
#include <wx/defs.h>
|
|
#include <wx/string.h>
|
|
|
|
class wxWindow;
|
|
class TrackList;
|
|
|
|
void HandlePageSetup(wxWindow *parent);
|
|
void HandlePrint(wxWindow *parent, wxString name, TrackList *tracks);
|
|
|
|
#endif // __AUDACITY_PRINTING__
|
|
|