Aller à la documentation de ce fichier.00001
00002
00003
00004
00005
00006
00007 #ifndef ILISIBLE_HPP
00008 #define ILISIBLE_HPP
00009
00010 #include "bib/io/LecteurFichier.hpp"
00011
00012 namespace bib {
00013 namespace io {
00014
00015 class ILisible
00016 {
00017 public :
00023 virtual void lecture(LecteurFichier& flux) = 0;
00024
00025 };
00026 }
00027 }
00028
00029 #endif // LISIBLE_HPP