1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-13 15:17:42 +02:00
audacity/src/ActiveProjects.h

24 lines
477 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ActiveProjects.h
**********************************************************************/
#ifndef __AUDACITY_ACTIVE_PROJECTS__
#define __AUDACITY_ACTIVE_PROJECTS__
#include "Identifier.h"
namespace ActiveProjects
{
FilePaths GetAll();
void Add(const FilePath &path);
void Remove(const FilePath &path);
wxString Find(const FilePath &path);
};
#endif