]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetparent.h
pos=string::npos for regex not found, use handcoded transform in lstring.C, fix the...
[lyx.git] / src / insets / insetparent.h
index cfc8e3e53aa026c44b2544d0cc24b72414e87122..fda6378d4a4f89b130252a8f8d90c36ad7f2fb62 100644 (file)
@@ -4,7 +4,7 @@
  *
  *           LyX, The Document Processor
  *      
- *           Copyright (C) 1997-1999 LyX Team
+ *           Copyright 1997-1999 LyX Team
  * 
  * ====================================================== */
 
   Useful to load a parent document from a child document and to
   share parent's properties between preambleless children. 
  */
-class InsetParent: public InsetCommand {
+class InsetParent : public InsetCommand {
 public:
        /// Non-standard LyX macro
-       InsetParent(): InsetCommand("lyxparent") { }
+       InsetParent() : InsetCommand("lyxparent") {}
        ///
-        InsetParent(string fn, Buffer * owner= 0);
-       ///
-        ~InsetParent() {}
+        InsetParent(string const & fn, Buffer * owner = 0);
        /// 
-       int Latex(FILE * file, signed char fragile);
+       int Latex(ostream &, signed char fragile);
        ///
        int Latex(string & file, signed char fragile);
         ///
-        Inset * Clone() { return new InsetParent(getContents()); }
+        Inset * Clone() const { return new InsetParent(getContents()); }
        ///
-       string getScreenLabel() const { return string(_("Parent:"))+getContents(); }
+       string getScreenLabel() const {
+               return string(_("Parent:")) + getContents();
+       }
         ///
        void Edit(int, int);
         ///