NB6_Hazards/Hazard/Hazard/Cell.cpp
2013-11-21 20:56:54 +01:00

17 lines
278 B
C++

#include "stdafx.h"
#include <string>
#include <vector>
#include "PrimImplikantCollection.h"
#include "Cell.h"
vector<Cell*> Cell::GetNeighbors()
{
vector<Cell*> neighbors;
return neighbors;
}
vector<Cell*> Cell::GetHazards()
{
vector<Cell*> neighbors;
return neighbors;
}