diff options
Diffstat (limited to 'dev/a3-earthquake/earthquake.h')
-rw-r--r-- | dev/a3-earthquake/earthquake.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev/a3-earthquake/earthquake.h b/dev/a3-earthquake/earthquake.h new file mode 100644 index 0000000..74f95e3 --- /dev/null +++ b/dev/a3-earthquake/earthquake.h @@ -0,0 +1,35 @@ +/** CSci-4611 Assignment 3: Earthquake + */ + +#ifndef EARTHQUAKE_H_ +#define EARTHQUAKE_H_ + +#include <string> + +#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 |