00001 00002 00003 00004 00005 00006 00007 #ifndef IINSCRIPTIBLE_HPP 00008 #define IINSCRIPTIBLE_HPP 00009 00010 #include "bib/io/EnregistreurFichier.hpp" 00011 00012 namespace bib { 00013 namespace io { 00014 00015 class IInscriptible 00016 { 00017 public : 00023 virtual void enregistrement(EnregistreurFichier& flux) const = 0; 00024 }; 00025 } 00026 } 00027 00028 #endif // INSCRIPTIBLE_HPP