mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-13 18:16:35 +01:00
13 lines
195 B
C++
13 lines
195 B
C++
#ifndef __stupid_basename_h__
|
|
#define __stupid_basename_h__
|
|
|
|
#include <string>
|
|
|
|
namespace PBD
|
|
{
|
|
|
|
extern std::string basename_nosuffix (const std::string&);
|
|
|
|
};
|
|
|
|
#endif // __stupid_basename_h__
|