/
ArtemNech
/
localAI
Обзор
Документация
Войти
/
ArtemNech
/
localAI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
cpp-tool/include/Types.h
32 строки
673 B
Artem Nechitaylenko
Initial commit
21 май 2026, 10:10
21 май 2026, 10:10
913a74d
Код
Авторство
О чём код?
#pragma once #include <string> #include <vector> struct MemberInfo { std::string name; std::string type; }; struct ClassInfo { std::string name; std::vector<MemberInfo> members; std::vector<std::string> public_methods; std::vector<std::string> base_classes; }; struct MethodInfo { std::string signature; std::string body; std::string full_code; std::string return_type; std::string class_name; std::string method_name; std::vector<std::string> params; uint32_t start_line; uint32_t end_line; uint32_t body_start_line; uint32_t body_start_col; uint32_t body_end_line; uint32_t body_end_col; };