Horizon
src
board
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;
11
Track::Connection
to;
12
void
update_refs(
class
Board
&brd);
13
};
14
}
// namespace horizon
horizon::Airwire
Definition:
airwire.hpp:5
horizon::Board
Definition:
board.hpp:43
horizon::Track::Connection
Definition:
track.hpp:34
Generated by
1.9.1