blob: 2db52d46c5b4b756f2ccdc6acc66b39addd29a6c [file] [log] [blame]
// Copyright (c) 2019 Pantor. All rights reserved.
#ifndef INCLUDE_INJA_TEMPLATE_HPP_
#define INCLUDE_INJA_TEMPLATE_HPP_
#include <map>
#include <string>
#include <vector>
#include "node.hpp"
namespace inja {
/*!
* \brief The main inja Template.
*/
struct Template {
std::vector<Node> nodes;
std::string content;
};
using TemplateStorage = std::map<std::string, Template>;
} // namespace inja
#endif // INCLUDE_INJA_TEMPLATE_HPP_