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