1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-22 15:20:15 +02:00
audacity/src/ActiveProjects.h
Leland Lucius a1e83c141a AUP3: AutoRecoveryDialog experiment
Looking for feedback...
2020-07-23 01:19:29 -05:00

26 lines
526 B
C++

/**********************************************************************
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