mirror of
https://github.com/Zygo/bees.git
synced 2025-05-17 21:35:45 +02:00
14 lines
209 B
C++
14 lines
209 B
C++
#ifndef CRUCIBLE_PATH_H
|
|
#define CRUCIBLE_PATH_H
|
|
|
|
#include <string>
|
|
|
|
namespace crucible {
|
|
using namespace std;
|
|
|
|
string basename(string s);
|
|
string join(string dir, string base);
|
|
};
|
|
|
|
#endif // CRUCIBLE_PATH_H
|