Added stubs of Cell methods

This commit is contained in:
Jonny007-MKD 2013-11-21 20:56:54 +01:00
parent ac1f11e2b3
commit fabe226ce6
1 changed files with 17 additions and 0 deletions

17
Hazard/Hazard/Cell.cpp Normal file
View File

@ -0,0 +1,17 @@
#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;
}