Racing Web
pregen.h
Go to the documentation of this file.
1// Copyright (c) 2023 Cameron King.
2// Dual licensed under MIT and GPLv2 with OpenSSL exception.
3// See LICENSE for details.
5
6#ifndef RACINGWEB_SRC_PREGEN_H_
7#define RACINGWEB_SRC_PREGEN_H_
8
9#include <vector>
10
11#include "src/Car.h"
12
19std::vector<std::vector<const Car *>> LoadPreGeneratedSchedule(
20 const std::vector<Car> &roster);
21
32std::vector<const Car *> BuildPreGenHeat(const std::vector<Car> &roster,
33 const int one, const int two,
34 const int three, const int four);
35
36#endif // RACINGWEB_SRC_PREGEN_H_
std::vector< const Car * > BuildPreGenHeat(const std::vector< Car > &roster, const int one, const int two, const int three, const int four)
Definition: pregen.cc:83
std::vector< std::vector< const Car * > > LoadPreGeneratedSchedule(const std::vector< Car > &roster)
Definition: pregen.cc:8