15 lines
122 B
C++
15 lines
122 B
C++
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
struct Code
|
||
|
{
|
||
|
void reset()
|
||
|
{
|
||
|
code = "";
|
||
|
}
|
||
|
|
||
|
std::string code;
|
||
|
};
|
||
|
|