Voici à quoi va ressembler le fichier vecteur.h de base :
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef DEFVECTEUR_3D_H
#define DEFVECTEUR_3D_H
#include <complex.h>
#include <math.h>
#include <stdio.h>
#include <iostream>
#include <list>
#include <vector>
#endif
|
Un bon début.
|