aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/IO/SwapHelper.h
blob: fcf32927f238dd961b0c8b19f13114a0d691e5a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <IO/BufferBase.h>

namespace DB
{

class SwapHelper
{
public:
    SwapHelper(BufferBase & b1_, BufferBase & b2_);
    ~SwapHelper();

private:
    BufferBase & b1;
    BufferBase & b2;
};

}