about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/C++/automobile.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 10:34:58 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-12-15 15:00:00 +0700
commit67393f42f41ab92219deb549f711121c4dab845b (patch)
treeebd0eb6c8a3d3bd69937312179aeaf273ea29c80 /usth/ICT2.2/labwork/3/C++/automobile.h
parentb38d9929f7a015b56b847fde7e83f814f354497e (diff)
downloadcp-67393f42f41ab92219deb549f711121c4dab845b.tar.gz
[usth/ICT2.2] Object Oriented Programming
Diffstat (limited to 'usth/ICT2.2/labwork/3/C++/automobile.h')
-rw-r--r--usth/ICT2.2/labwork/3/C++/automobile.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/C++/automobile.h b/usth/ICT2.2/labwork/3/C++/automobile.h
new file mode 100644
index 0000000..0e65865
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/C++/automobile.h
@@ -0,0 +1,20 @@
+#include <string>
+
+using namespace std;
+
+class Automobile
+{
+  double fuel;
+  double speed;
+  string license;
+public:
+  Automobile (string, double, double);
+  string get_license () { return license; }
+  double get_fuel () { return fuel; }
+  double get_speed () { return speed; }
+  void set_license (string);
+  void set_fuel (double);
+  void set_speed (double);
+  void accelerate (double);
+  void decelerate (double);
+};