summaryrefslogtreecommitdiffstats
path: root/2022-2/L10/mitsuo/Almacen.h
diff options
context:
space:
mode:
Diffstat (limited to '2022-2/L10/mitsuo/Almacen.h')
-rw-r--r--2022-2/L10/mitsuo/Almacen.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/2022-2/L10/mitsuo/Almacen.h b/2022-2/L10/mitsuo/Almacen.h
new file mode 100644
index 0000000..782afec
--- /dev/null
+++ b/2022-2/L10/mitsuo/Almacen.h
@@ -0,0 +1,27 @@
+/*
+ * File: Almacen.h
+ * Author: mitsuo
+ *
+ * Created on 02 December 2022, 12:40
+ */
+
+#ifndef ALMACEN_H
+#define ALMACEN_H
+
+#include "Arbol.h"
+
+class Almacen {
+public:
+ Almacen();
+ Almacen(const Almacen& orig);
+ virtual ~Almacen();
+
+ void carga();
+ void actualiza();
+ void imprime();
+private:
+ Arbol arbolalma; // arbol que representa al almacen
+};
+
+#endif /* ALMACEN_H */
+