summaryrefslogtreecommitdiff
path: root/sem_6/HLIN603/TP1/CompteBancaire.h
blob: ee525b241879643b26b4c9489c7388e3417eec84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _CB_H
#define _CB_H
#include<cstdlib>
#include<iostream>

class CompteBancaire
{
  protected :
  float solde;
  public :
  CompteBancaire(float v);
  CompteBancaire();
  virtual ~CompteBancaire();
  virtual void deposer(float v);
};
#endif