Horizon
airwire.hpp
1 #pragma once
2 #include "track.hpp"
3 
4 namespace horizon {
5 class Airwire {
6 public:
7  Airwire(const Track::Connection &f, const Track::Connection &t) : from(f), to(t)
8  {
9  }
10  Track::Connection from;
12  void update_refs(class Board &brd);
13 };
14 } // namespace horizon
Definition: airwire.hpp:5
Definition: board.hpp:43
Definition: track.hpp:34