17 lines
370 B
C++
17 lines
370 B
C++
#ifndef TP5_PROJET_HPP
|
|
#define TP5_PROJET_HPP 1
|
|
|
|
#include <iostream>
|
|
|
|
class Projet {
|
|
friend std::ostream &operator<<(std::ostream &, const Projet &);
|
|
|
|
public:
|
|
Projet(); // constructor
|
|
virtual ~Projet(); // destructor
|
|
|
|
Projet(const Projet &); // copy constructor
|
|
const Projet &operator=(const Projet &); // copy assignement
|
|
};
|
|
|
|
#endif
|