1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-19 04:30:16 +02:00

AUP3: AutoRecoveryDialog experiment

Looking for feedback...
This commit is contained in:
Leland Lucius
2020-07-23 01:19:29 -05:00
parent a3fcd611b5
commit a1e83c141a
7 changed files with 3126 additions and 86 deletions

25
src/ActiveProjects.h Normal file
View File

@@ -0,0 +1,25 @@
/**********************************************************************
Audacity: A Digital Audio Editor
ActiveProjects.h
**********************************************************************/
#ifndef __AUDACITY_ACTIVE_PROJECTS__
#define __AUDACITY_ACTIVE_PROJECTS__
#include "Audacity.h"
#include "audacity/Types.h"
#include <wx/string.h>
namespace ActiveProjects
{
FilePaths GetAll();
void Add(const FilePath &path);
void Remove(const FilePath &path);
wxString Find(const FilePath &path);
};
#endif