ClickHouse/programs/disks/ICommand_fwd.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
113 B
C++
Raw Normal View History

2024-05-27 12:45:05 +00:00
#pragma once
2024-05-27 11:44:45 +00:00
2024-05-27 12:45:05 +00:00
#include <memory>
2024-05-27 11:44:45 +00:00
namespace DB
{
class ICommand;
using CommandPtr = std::shared_ptr<ICommand>;
}