]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.h
unneeded header
[lyx.git] / src / buffer_funcs.h
index eb2b3d4a684c8963942a190213b14761b48d693f..8e555620445886f30f3374bebe215fa1caba738a 100644 (file)
 #include <string>
 
 
+namespace lyx {
+
+namespace support { class FileName; }
+
 class Buffer;
 class DocIterator;
 class ErrorList;
@@ -28,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
@@ -55,16 +59,19 @@ 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
 
 #endif // BUFFER_FUNCS_H