]> git.lyx.org Git - lyx.git/blobdiff - src/ImportNoweb.h
small changes to ButtonController usage
[lyx.git] / src / ImportNoweb.h
index f6d18c2fdfed3fc5ebe8d71846eceae270cb43ec..c83d148341e60b13fb3594ed00b08830b8584c0b 100644 (file)
@@ -1,19 +1,19 @@
 // -*- C++ -*-
 /* This file is part of
- * ======================================================
+ * ====================================================== 
  * 
  *           LyX, The Document Processor
  *
- *           Copyright (C) 1995-1999 The LyX Team.
+ *           Copyright 1995-2000 The LyX Team.
  *
- *           This file is Copyright (C) 1999
+ *           This file is Copyright 1999
  *           Kayvan A. Sylvan
  *
- *======================================================
+ * ====================================================== 
  */
 
-#ifndef _IMPORTNOWEB_H
-#define _IMPORTNOWEB_H
+#ifndef IMPORTNOWEB_H
+#define IMPORTNOWEB_H
 
 #ifdef __GNUG__
 #pragma interface
@@ -29,7 +29,7 @@ public:
        /**
          file = name and path of the noweb file to import
          */
-       ImportNoweb(LString const & file) : file(file) {};
+       explicit ImportNoweb(string const & file) : file(file) {}
        
        /** Imports the document.
          Return 0 if fail.
@@ -37,11 +37,12 @@ public:
        Buffer * run();
 private:
        ///
-       LString file;
+       string file;
        ///
-       LString documentclass();
+       string documentclass();
        ///
-       enum{ 
+       enum {
+               ///
                BUFSIZE = 512 
        };
 };