OpenTTD
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  virtual void Run(LinkGraphJob &job) const { job.Init(); }
20 
24  virtual ~InitHandler() {}
25 };
26 
27 #endif /* INIT_H */