X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLyXVC.h;h=fd223570172ee0338967ab3e88d7cb9e2f2e1e01;hb=a11780b59fcb6cdd16b15f9fa4de45d7ddfd1b2a;hp=27d935ed737177959daf66755679ad779fdf780b;hpb=ca8709aaf5f5f14aae1978403e13aac3a93506aa;p=features.git diff --git a/src/LyXVC.h b/src/LyXVC.h index 27d935ed73..fd22357017 100644 --- a/src/LyXVC.h +++ b/src/LyXVC.h @@ -12,6 +12,7 @@ #ifndef LYX_VC_H #define LYX_VC_H +#include "support/docstring.h" #include "support/unique_ptr.h" #include @@ -48,6 +49,8 @@ public: }; /// LyXVC(); + /// Status of the underlying VCS + docstring vcstatus() 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 @@ -173,7 +176,8 @@ public: Tree = 2, Author = 3, Date = 4, - Time = 5 + Time = 5, + FileAbbrev = 6 }; /** @@ -188,7 +192,7 @@ private: Buffer * owner_; /// - unique_ptr vcs; + unique_ptr vcs_; };