]> git.lyx.org Git - lyx.git/blobdiff - src/DepTable.C
"Inter-word Space"
[lyx.git] / src / DepTable.C
index 8e0997f8cef643a55594c7430c86eb86bbfdae82..a23c091660f58f9ffc9b4d8e0301743e6c2d4e51 100644 (file)
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "DepTable.h"
 #include "debug.h"
 
@@ -238,7 +234,7 @@ void DepTable::write(string const & f) const
 }
 
 
-void DepTable::read(string const & f)
+bool DepTable::read(string const & f)
 {
        ifstream ifs(f.c_str());
        string nome;
@@ -256,4 +252,5 @@ void DepTable::read(string const & f)
                }
                deplist[nome] = di;
        }
+       return deplist.size();
 }