15 lines
128 B
C++
15 lines
128 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
class Code
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
|
||
|
|
||
|
private:
|
||
|
std::vector<std::string> buffer;
|
||
|
};
|