~valhalla-routing/+junk/valhalla_2.1.9-0ubuntu1

« back to all changes in this revision

Viewing changes to libvalhalla/valhalla/mjolnir/transitbuilder.h

  • Committer: valhalla
  • Date: 2017-04-24 20:20:53 UTC
  • Revision ID: valhalla@mapzen.com-20170424202053-7o69b9nwx9ee0tw3
PackagingĀ forĀ 2.1.9-0ubuntu1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef VALHALLA_MJOLNIR_TRANSITBUILDER_H
 
2
#define VALHALLA_MJOLNIR_TRANSITBUILDER_H
 
3
 
 
4
#include <boost/property_tree/ptree.hpp>
 
5
 
 
6
namespace valhalla {
 
7
namespace mjolnir {
 
8
 
 
9
/**
 
10
 * Class used to build transit data within the graph tiles.
 
11
 */
 
12
class TransitBuilder {
 
13
 public:
 
14
 
 
15
  /**
 
16
   * Add transit information to the graph tiles.
 
17
   * @param pt   Property tree containing the hierarchy configuration
 
18
   *             and other configuration needed to build transit.
 
19
   */
 
20
  static void Build(const boost::property_tree::ptree& pt);
 
21
 
 
22
};
 
23
 
 
24
}
 
25
}
 
26
 
 
27
#endif  // VALHALLA_MJOLNIR_TRANSITBUILDER_H