inkcpp
Loading...
Searching...
No Matches
compilation_results.h
1/* Copyright (c) 2024 Julian Benda
2 *
3 * This file is part of inkCPP which is released under MIT license.
4 * See file LICENSE.txt or go to
5 * https://github.com/JBenda/inkcpp for full license details.
6 */
7#pragma once
8
9#include <vector>
10#include <string>
11
13{
15typedef std::vector<std::string> error_list;
16
22} // namespace ink::compiler
collection of functions to compile a story.json to story.bin
Definition compilation_results.h:13
std::vector< std::string > error_list
list of errors/warnings
Definition compilation_results.h:15
stores results from the compilation process
Definition compilation_results.h:18
error_list warnings
list of all warnings generated
Definition compilation_results.h:19
error_list errors
list of all errors generated
Definition compilation_results.h:20