]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
unneeded header
[lyx.git] / src / buffer_funcs.h
index d3fdb59701529b323bdfb8bdca413f924cb262e2..8e555620445886f30f3374bebe215fa1caba738a 100644 (file)
@@ -20,6 +20,7 @@
 
 namespace lyx {
 
+namespace support { class FileName; }
 
 class Buffer;
 class DocIterator;
@@ -31,7 +32,7 @@ class ParIterator;
  *  Loads a LyX file \c filename into \c Buffer
  *  and \return success status.
  */
-bool loadLyXFile(Buffer *, std::string const & filename);
+bool loadLyXFile(Buffer *, support::FileName const & filename);
 
 /* Make a new file (buffer) with name \c filename based on a template
  * named \c templatename
@@ -58,17 +59,17 @@ lyx::docstring expandLabel(Buffer const & buf,
 /**
 A full updateLabels(Buffer const &) will be called if not possible.
 */
-void updateLabels(Buffer const & buf, ParIterator & it);
+void updateLabels(Buffer const & buf, ParIterator & it, bool childonly = false);
 
 /// update labels between "from" and "to" if possible.
 /**
 A full updateLabels(Buffer const &) will be called if not possible.
 */
 void updateLabels(Buffer const & buf,
-       ParIterator & from, ParIterator & to);
+       ParIterator & from, ParIterator & to, bool childonly = false);
 
 /// updates all counters
-void updateLabels(Buffer const &);
+void updateLabels(Buffer const &, bool childonly = false);
 
 
 } // namespace lyx