Paul Davis
c9b121803c
git-svn-id: svn://localhost/ardour2/branches/3.0@7427 d708f5d6-7413-0410-9779-e7cbd77b26cf
13 lines
263 B
C++
13 lines
263 B
C++
#ifndef __pbd_clear_dir_h__
|
|
#define __pbd_clear_dir_h__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sys/types.h>
|
|
|
|
namespace PBD {
|
|
int clear_directory (const std::string&, size_t* = 0, std::vector<std::string>* = 0);
|
|
}
|
|
|
|
#endif /* __pbd_clear_dir_h__ */
|