add typedef for an array of phantom node vectors

This commit is contained in:
Dennis Luxen 2014-06-23 16:54:57 +02:00
parent 5faf88afdb
commit b74a573ec5

View File

@ -32,6 +32,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/SimpleLogger.h"
#include "../typedefs.h"
#include <vector>
struct PhantomNode
{
PhantomNode(NodeID forward_node_id, NodeID reverse_node_id, unsigned name_id,
@ -143,6 +145,8 @@ struct PhantomNode
}
};
typedef std::vector<std::vector<PhantomNode>> PhantomNodeArray;
struct PhantomNodes
{
PhantomNode source_phantom;