mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-25 16:07:49 +01:00
12 lines
282 B
C++
12 lines
282 B
C++
#include <string>
|
|
#include <list>
|
|
|
|
class XMLNode;
|
|
|
|
namespace ARDOUR {
|
|
class Session;
|
|
}
|
|
|
|
extern void check_xml (XMLNode *, std::string, std::list<std::string> const &);
|
|
extern bool write_ref (XMLNode *, std::string);
|
|
extern ARDOUR::Session* load_session (std::string, std::string);
|