mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
10 lines
99 B
C++
10 lines
99 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class FileCache;
|
|
using FileCachePtr = std::shared_ptr<FileCache>;
|
|
|
|
}
|