summaryrefslogtreecommitdiff
path: root/sem_6/HLIN603/TP1/CompteDepotRemunereCB.h
diff options
context:
space:
mode:
Diffstat (limited to 'sem_6/HLIN603/TP1/CompteDepotRemunereCB.h')
-rw-r--r--sem_6/HLIN603/TP1/CompteDepotRemunereCB.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/sem_6/HLIN603/TP1/CompteDepotRemunereCB.h b/sem_6/HLIN603/TP1/CompteDepotRemunereCB.h
new file mode 100644
index 0000000..f4f1179
--- /dev/null
+++ b/sem_6/HLIN603/TP1/CompteDepotRemunereCB.h
@@ -0,0 +1,16 @@
+#ifndef _CDR_H
+#define _CDR_H
+#include<cstdlib>
+#include<iostream>
+#include"./CompteRemunere.h"
+#include"./CompteDepot.h"
+
+class CompteDepotRemunereCB : public CompteDepotRemunere,public CompteDepotAvecCB
+{
+ public :
+ CompteDepotRemunere(float v);
+ CompteDepotRemunere();
+ virtual ~CompteDepotRemunere();
+ virtual void deposer(float);
+};
+#endif