13 lines
199 B
C++
13 lines
199 B
C++
|
|
#pragma once
|
|
|
|
#include "LanguageCommon.hpp"
|
|
|
|
namespace tp {
|
|
struct Sentence {
|
|
const int1* buffer = nullptr;
|
|
alni symbolSize = 1;
|
|
|
|
explicit Sentence(const char* buff) { buffer = buff; }
|
|
};
|
|
}
|