#ifndef Polymere_HPP 
#define Polymere_HPP

class Polymere {
public :
	static int nombre_de_polymeres;
	Polymere();
	Polymere(const Particule &p);
	Polymere(const Polymere &pol, const Particule &p);
	Polymere(const Particule &p, const Polymere &pol);
	Polymere(const Polymere &f);
	~Polymere();
	int Nombre_monomeres () const;
	void afficher() const;	
private:
	int n;
	Particule *nuage;
};
#endif