This repository has been archived on 2023-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
GestionProjet/includes/Tache.hpp
2023-10-19 23:05:11 +02:00

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