From cccd3186305915d92b1751dc616979d64116a4aa Mon Sep 17 00:00:00 2001 From: KT Date: Mon, 6 Sep 2021 19:07:33 -0500 Subject: Upload a1 --- dev/a3-earthquake/earthquake.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 dev/a3-earthquake/earthquake.h (limited to 'dev/a3-earthquake/earthquake.h') diff --git a/dev/a3-earthquake/earthquake.h b/dev/a3-earthquake/earthquake.h deleted file mode 100644 index 74f95e3..0000000 --- a/dev/a3-earthquake/earthquake.h +++ /dev/null @@ -1,35 +0,0 @@ -/** CSci-4611 Assignment 3: Earthquake - */ - -#ifndef EARTHQUAKE_H_ -#define EARTHQUAKE_H_ - -#include - -#include "date.h" - -/** Small data structure for storing earthquake data. - */ -class Earthquake { -public: - // Create an earthquake from a datafile's line of text - Earthquake(std::string s); - Earthquake(); - - Date date(); - - double longitude(); - - double latitude(); - - double magnitude(); - -private: - - double ParseFloat(std::string s); - int ParseInt(std::string s); - - std::string line; -}; - -#endif -- cgit v1.2.3