]> 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 2dafd19f66c287261c7cdad283827f74273bd3c5..fda6378d4a4f89b130252a8f8d90c36ad7f2fb62 100644 (file)
@@ -1,15 +1,15 @@
 // -*- C++ -*-
 /* This file is part of*
- * ======================================================
+ * ====================================================== 
  *
  *           LyX, The Document Processor
  *      
- *         Copyright (C) 1997-1998 LyX Team
+ *           Copyright 1997-1999 LyX Team
  * 
- *======================================================*/
+ * ====================================================== */
 
-#ifndef _INSET_PARENT_H
-#define _INSET_PARENT_H
+#ifndef INSET_PARENT_H
+#define INSET_PARENT_H
 
 #ifdef __GNUG__
 #pragma interface
   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);
+       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);
         ///
@@ -51,5 +51,4 @@ public:
         ///
         void setParent(string fn) { setContents(fn); }
 };
-
 #endif