1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-07 15:49:42 +02:00
audacity/src/Printing.h
Emily Mabrey 40d4883233
Revert "Replace header guards with #pragma once"
This reverts commit a6bc896e246d48821ff7ae70d572aefcf0cbedd6.
2021-08-24 16:57:24 -04:00

28 lines
519 B
C++

/**********************************************************************
Tenacity
Printing.h
Dominic Mazzoni
**********************************************************************/
#ifndef __AUDACITY_PRINTING__
#define __AUDACITY_PRINTING__
#include <wx/defs.h>
class wxString;
class wxWindow;
class TrackList;
class TrackPanel;
void HandlePageSetup(wxWindow *parent);
void HandlePrint(
wxWindow *parent, const wxString &name, TrackList *tracks,
TrackPanel &panel);
#endif // __AUDACITY_PRINTING__