The Battle for Wesnoth  1.19.0-dev
help_topic_generators.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 2024
3  by David White <dave@whitevine.net>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #pragma once
17 
18 #include "help_impl.hpp"
19 
20 #include <string> // for string
21 #include <vector> // for vector
22 class terrain_type; // lines 20-20
23 class unit_type;
24 
25 namespace help {
26 
28 {
30 
31 
32 public:
34 
35  virtual std::string operator()() const;
36 };
37 
38 
39 
41 {
42  const unit_type& type_;
43  const std::string variation_;
44  void push_header(std::vector< help::item > &row, const std::string& name) const;
45 public:
46  unit_topic_generator(const unit_type &t, std::string variation="") : type_(t), variation_(variation) {}
47  virtual std::string operator()() const;
48 };
49 
50 } // end namespace help/
double t
Definition: astarsearch.cpp:63
virtual std::string operator()() const
terrain_topic_generator(const terrain_type &type)
Generate a topic text on the fly.
Definition: help_impl.hpp:63
unit_topic_generator(const unit_type &t, std::string variation="")
virtual std::string operator()() const
void push_header(std::vector< help::item > &row, const std::string &name) const
A single unit type that the player may recruit.
Definition: types.hpp:43
Definition: help.cpp:53