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