mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
11 lines
113 B
C++
11 lines
113 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace DB
|
|
{
|
|
class ICommand;
|
|
|
|
using CommandPtr = std::shared_ptr<ICommand>;
|
|
}
|