]> git.lyx.org Git - lyx.git/blobdiff - src/LyXVC.h
Avoid duplicating mode changing commands
[lyx.git] / src / LyXVC.h
index 9b1c747b82b5b9f72cf6abfb62fa043e13b39cb1..f54fd9ad2687b1ab9859dbe268f08ae58421c128 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef LYX_VC_H
 #define LYX_VC_H
 
-#include <boost/scoped_ptr.hpp>
+#include "support/unique_ptr.h"
 
 #include <string>
 
@@ -44,12 +44,12 @@ public:
                Cancelled,    ///< command was cancelled
                ErrorBefore,  ///< error before executing command
                ErrorCommand, ///< error while executing command
-               Success       ///< command was executed successfully
+               VCSuccess     ///< command was executed successfully
        };
        ///
        LyXVC();
-       ///
-       ~LyXVC();
+       /// Name of the underlying VCS
+       std::string vcname() const;
        /// Is \p fn under version control?
        static bool fileInVC(support::FileName const & fn);
        /** Not a good name perhaps. This function should be called whenever
@@ -190,7 +190,7 @@ private:
        Buffer * owner_;
 
        ///
-       boost::scoped_ptr<VCS> vcs;
+       unique_ptr<VCS> vcs;
 };