mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 08:38:39 +02:00
37 lines
668 B
C++
37 lines
668 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportExportPrefs.h
|
|
|
|
Joshua Haberman
|
|
Dominic Mazzoni
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_EXPORT_PREFS__
|
|
#define __AUDACITY_IMPORT_EXPORT_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class ImportExportPrefs:public PrefsPanel
|
|
{
|
|
public:
|
|
ImportExportPrefs(wxWindow * parent);
|
|
~ImportExportPrefs();
|
|
virtual bool Apply();
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
#endif
|