Welcome to mirror list, hosted at ThFree Co, Russian Federation.

car_model.hpp « routing - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8170df3a7536d52590d3269c6a4068dcba086e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "vehicle_model.hpp"

namespace routing
{

class CarModel : public VehicleModel
{
  CarModel();

public:
  static CarModel const & Instance();
};

}  // namespace routing