Files @ r28417:68079c799b60
Branch filter:

Location: cpp/openttd-patchpack/source/src/linkgraph/init.h

Tyler Trahan
Fix: Use consistent wording on waypoint button tooltip (#11700)
/** @file init.h Declaration of initializing link graph handler. */

#ifndef INIT_H
#define INIT_H

#include "linkgraphjob_base.h"

/**
 * Stateless, thread safe initialization handler. Initializes node and edge
 * annotations.
 */
class InitHandler : public ComponentHandler {
public:

	/**
	 * Initialize the link graph job.
	 * @param job Job to be initialized.
	 */
	void Run(LinkGraphJob &job) const override { job.Init(); }
};

#endif /* INIT_H */