/
thomas-king
/
ArgumentsParser
Обзор
Документация
Войти
/
thomas-king
/
ArgumentsParser
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
include/Manual/Models/Cell.h
36 строк
540 B
Ace Rodstin
Update header files
22 ноя 2023, 03:04
22 ноя 2023, 03:04
e102d33
Код
Авторство
О чём код?
// // Cell.h // Manual // // Created by Ace Rodstin on 11/20/23. // Updated by Ace Rodstin on 11/20/23. // // Copyright (C) 2023 Ace Rodstin. All rights reserved. // #ifndef MANUAL_CELL_HEADER_FILE #define MANUAL_CELL_HEADER_FILE #include <string> using namespace std; namespace manual { class Cell { public: using Value = string; using Size = Value::size_type; Cell(Value value); Value getValue() const; Size getSize() const; private: Value value; }; } #endif