summaryrefslogtreecommitdiffstats
path: root/2022-2/L10/mitsuo/Medicamento.h
diff options
context:
space:
mode:
Diffstat (limited to '2022-2/L10/mitsuo/Medicamento.h')
-rw-r--r--2022-2/L10/mitsuo/Medicamento.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/2022-2/L10/mitsuo/Medicamento.h b/2022-2/L10/mitsuo/Medicamento.h
new file mode 100644
index 0000000..46ad4dc
--- /dev/null
+++ b/2022-2/L10/mitsuo/Medicamento.h
@@ -0,0 +1,34 @@
+/*
+ * File: Medicamento.h
+ * Author: mitsuo
+ *
+ * Created on 02 December 2022, 12:31
+ */
+
+#ifndef MEDICAMENTO_H
+#define MEDICAMENTO_H
+
+#include <iostream>
+
+class Medicamento {
+public:
+ Medicamento();
+ Medicamento(const Medicamento& orig);
+ virtual ~Medicamento();
+ void setPrecio(double precio);
+ double getPrecio() const;
+
+ int getCodigo() const;
+
+ virtual int lee(std::istream &input);
+ virtual void imprime(std::ostream &output);
+ virtual void actualiza(std::istream &input);
+private:
+ int codigo;
+ char * nombre;
+ int stock;
+ double precio;
+};
+
+#endif /* MEDICAMENTO_H */
+