mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
14 lines
162 B
C++
14 lines
162 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <base/StringRef.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
std::string parentPath(StringRef path);
|
||
|
|
||
|
std::string getBaseName(StringRef path);
|
||
|
|
||
|
}
|