summaryrefslogtreecommitdiff
path: root/sem_6/HLIN603/TP1/CompteDepotRemunereCB.h
blob: f4f117989dd8b3bedd93fbdddd014bb86c52db93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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