From fabe226ce63a3de0c114063d9e021ec25973a0b8 Mon Sep 17 00:00:00 2001 From: Jonny007-MKD <1-23-4-5@web.de> Date: Thu, 21 Nov 2013 20:56:54 +0100 Subject: [PATCH] Added stubs of Cell methods --- Hazard/Hazard/Cell.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Hazard/Hazard/Cell.cpp diff --git a/Hazard/Hazard/Cell.cpp b/Hazard/Hazard/Cell.cpp new file mode 100644 index 0000000..a41190b --- /dev/null +++ b/Hazard/Hazard/Cell.cpp @@ -0,0 +1,17 @@ +#include "stdafx.h" +#include +#include +#include "PrimImplikantCollection.h" +#include "Cell.h" + +vector Cell::GetNeighbors() +{ + vector neighbors; + return neighbors; +} + +vector Cell::GetHazards() +{ + vector neighbors; + return neighbors; +} \ No newline at end of file