]> git.lyx.org Git - lyx.git/blobdiff - src/lyxvc.h
add missing typename
[lyx.git] / src / lyxvc.h
index a0d8227ae6940060b4a1345a303d31b1b201ed80..30110b2bbe324b677df9d202ded0912f31c05208 100644 (file)
@@ -19,7 +19,7 @@ class Buffer;
     The support in LyX is based loosely upon the version control in GNU Emacs,
     but is not as extensive as that one. See examples/VC.lyx for a simple
     tutorial and manual for the use of the version control system in LyX.
-    
+
     LyXVC use this algorithm when it searches for VC files:
     for RCS it searches for <filename>,v and RCS/<filename>,v similar
     should be done for CVS. By doing this there doesn't need to be any
@@ -40,7 +40,7 @@ public:
          control by a VCS.
          */
        bool file_found_hook(string const & fn);
-       
+
        /** This function should be run when a file is requested for loading,
          but it does not exist. This function will then check for a VC master
          file with the same name (see above function). If this exists the
@@ -68,17 +68,23 @@ public:
        /// Undo last check-in.
        void undoLast();
 
-       /// generate a log file and return the filename
+       /**
+        * Generate a log file and return the filename.
+        * It is the caller's responsibility to unlink the
+        * file after use.
+        */
        const string getLogFile() const;
 
-       /// 
+       ///
        void toggleReadOnly();
-       
+
        /// Is the document under administration by RCS?
        bool inUse();
 
        /// Returns the version number.
-       string const & version() const;
+       //string const & version() const;
+       /// Returns the version number.
+       string const versionString() const;
 
        /// Returns the userid of the person who has locked the doc.
        string const & locker() const;
@@ -86,7 +92,7 @@ public:
 private:
        ///
        Buffer * owner_;
-       
+
        ///
        VCS * vcs;
 };