OpenTTD Source  20241108-master-g80f628063a
init.h
Go to the documentation of this file.
1 
3 #ifndef INIT_H
4 #define INIT_H
5 
6 #include "linkgraphjob_base.h"
7 
12 class InitHandler : public ComponentHandler {
13 public:
14 
19  void Run(LinkGraphJob &job) const override { job.Init(); }
20 };
21 
22 #endif /* INIT_H */
A handler doing "something" on a link graph component.
Stateless, thread safe initialization handler.
Definition: init.h:12
void Run(LinkGraphJob &job) const override
Initialize the link graph job.
Definition: init.h:19
Class for calculation jobs to be run on link graphs.
Definition: linkgraphjob.h:29
void Init()
Initialize the link graph job: Resize nodes and edges and populate them.
Some typedefs for component handlers.