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-21 15:47:15 +02:00

19 lines
385 B
C++

#ifndef TP5_TACHE_HPP
#define TP5_TACHE_HPP 1
#include <iostream>
class Tache {
static int unique_id;
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