summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2RoutingTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2RoutingTable.cpp82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/T2DLL/T2RoutingTable.cpp b/src/T2DLL/T2RoutingTable.cpp
new file mode 100644
index 0000000..8380825
--- /dev/null
+++ b/src/T2DLL/T2RoutingTable.cpp
@@ -0,0 +1,82 @@
+#include "T2RoutingTable.h"
+
+T2RoutingTable::T2RoutingTable(T2FloorInfo*, T2FloorPtrList*, int) {
+}
+
+/*virtual*/ T2RoutingTable::~T2RoutingTable() {
+}
+
+void T2RoutingTable::FloorAdded() {
+}
+
+void T2RoutingTable::FloorRemoved(int) {
+}
+
+int T2RoutingTable::IsRelatedMover(T2Mover*) const {
+}
+
+void T2RoutingTable::MoverAdded(T2Mover*, int) {
+}
+
+void T2RoutingTable::MoverRemoved(T2Mover*, int) {
+}
+
+void T2RoutingTable::MoverModified(T2Mover*, int) {
+}
+
+void T2RoutingTable::AddItem(T2Mover*) {
+}
+
+void T2RoutingTable::RemoveItem(T2Mover*) {
+}
+
+T2MoverRoutingTable* T2RoutingTable::GetItem(T2Mover*) const {
+}
+
+int T2RoutingTable::GetElem(T2Mover*, int, T2RoutingTableElem&) const {
+}
+
+int T2RoutingTable::GetIndex(T2Mover*) const {
+}
+
+void T2RoutingTable::Update() {
+}
+
+void T2RoutingTable::FullUpdate() {
+}
+
+void T2RoutingTable::ClearData() {
+}
+
+int T2RoutingTable::CheckRoute(POINT, POINT, unsigned int) const {
+}
+
+int T2RoutingTable::IsConnectRouteFromLobby(POINT) const {
+}
+
+int T2RoutingTable::GetNextRoute(POINT, POINT&) const {
+}
+
+T2Tenant* T2RoutingTable::SelectNearTenant(POINT, unsigned int) const {
+}
+
+T2Tenant* T2RoutingTable::SelectNearTenant(T2Tenant*, int, unsigned int) const {
+}
+
+T2RoutingTableElem::T2RoutingTableElem() {
+}
+
+T2RoutingTableElem::~T2RoutingTableElem() {
+}
+
+int T2RoutingTableElem::IsStopFloor() const {
+}
+
+void T2RoutingTableElem::SetTable(unsigned int, int) {
+}
+
+int T2RoutingTableElem::IsSetTable(unsigned int, unsigned int, int, int) {
+}
+
+int T2RoutingTableElem::HasNextRoute(unsigned int) const {
+}