Avionics
Dropship Simulator
Dependency.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Connector.h"
4 #include <vector>
5 
6 namespace Systems
7 {
8  class Dependency
9  {
10  public:
11  std::vector<GUID> loops; // always connectors, only used to populate the connector vector below, retain integrity of file
12  std::vector<Connector*> connectors;
13 
14  System system; // derived from connectors
18  };
19 }
std::vector< Connector * > connectors
Definition: Dependency.h:12
These have to be in this order.
Definition: BaseComponent.h:12
std::vector< GUID > loops
Definition: Dependency.h:11