16 lines
212 B
C++
16 lines
212 B
C++
|
#pragma once
|
||
|
|
||
|
class Label;
|
||
|
|
||
|
template <class Buffer>
|
||
|
class LabelsWriter
|
||
|
{
|
||
|
public:
|
||
|
LabelsWriter(Buffer &buffer) : buffer_(buffer) {}
|
||
|
|
||
|
void handle(const Label& label);
|
||
|
|
||
|
private:
|
||
|
Buffer& buffer_;
|
||
|
};
|