ClickHouse/src/IO/SwapHelper.h

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

20 lines
214 B
C++
Raw Normal View History

2023-01-20 11:19:19 +00:00
#pragma once
2023-04-18 11:11:42 +00:00
2023-01-19 17:58:09 +00:00
#include <IO/BufferBase.h>
2023-01-19 17:44:29 +00:00
namespace DB
{
2023-04-18 11:11:42 +00:00
class SwapHelper
{
public:
SwapHelper(BufferBase & b1_, BufferBase & b2_);
~SwapHelper();
private:
BufferBase & b1;
BufferBase & b2;
};
2023-01-19 17:44:29 +00:00
}