From c94d0c347fdbd8acc774df4ac17617a3f63e4507 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 9 Jul 2017 23:48:06 +0200 Subject: Delete old codebase This change removes version 1 of the OpenDC simulator codebase as it will be replaced by a complete rewrite in the Kotlin language. --- Simulator/include/modeling/machine/GPU.h | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 Simulator/include/modeling/machine/GPU.h (limited to 'Simulator/include/modeling/machine/GPU.h') diff --git a/Simulator/include/modeling/machine/GPU.h b/Simulator/include/modeling/machine/GPU.h deleted file mode 100644 index 049b928e..00000000 --- a/Simulator/include/modeling/machine/GPU.h +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -namespace Modeling -{ - class GPU - { - public: - GPU(int speed, int cores, int energyConsumption, int failureModelId); - - /* - Returns the speed of this CPU. - */ - int getSpeed(); - - /* - Returns the nr of cores of this CPU. - */ - int getCores(); - - /* - Returns the energy consumed by this CPU. - */ - int getEnergyConsumption(); - - /* - Returns the failure model id of this CPU. - */ - int getFailureModelId(); - - private: - int speed, cores, energyConsumption, failureModelId; - }; -} -- cgit v1.2.3