Racing Web
raceutil.h
Go to the documentation of this file.
1// Copyright (c) 2022 Cameron King.
2// Dual licensed under MIT and GPLv2 with OpenSSL exception.
3// See LICENSE for details.
5
6#ifndef RACINGWEB_SRC_RACEUTIL_H_
7#define RACINGWEB_SRC_RACEUTIL_H_
8
9#include <vector>
10
11#include "src/Car.h"
12
19bool DoAnyCarsMatch(std::vector<const Car *> const &a,
20 std::vector<const Car *> const &b);
21
22#endif // RACINGWEB_SRC_RACEUTIL_H_
bool DoAnyCarsMatch(std::vector< const Car * > const &a, std::vector< const Car * > const &b)
Definition: raceutil.cc:8