X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fvc-backend.h;h=1c3fa62c1812470c415ea109a8bbe39922193de9;hb=98c966c64594611e469313314abd1e59524adb4a;hp=45508ca0c25c160dd8b7b08a03f12117c99810fc;hpb=1120aa806c16aac6942760f244a1dbbe30c744be;p=lyx.git diff --git a/src/vc-backend.h b/src/vc-backend.h index 45508ca0c2..1c3fa62c18 100644 --- a/src/vc-backend.h +++ b/src/vc-backend.h @@ -43,13 +43,13 @@ public: /** * getLog - read the revision log into the given file * @param fname file name to read into - */ + */ virtual void getLog(string const &) = 0; /// return the current version description virtual string const versionString() const = 0; /// return the current version string const & version() const { - return version_; + return version_; } /// return the user who has locked the file string const & locker() const { return locker_; } @@ -62,7 +62,7 @@ public: protected: /// parse information from the version file virtual void scanMaster() = 0; - + /** * doVCCommand - call out to the version control utility * @param cmd the command to execute @@ -71,21 +71,21 @@ protected: */ static int doVCCommand(string const & cmd, string const & path); - /** + /** * The master VC file. For RCS this is *,v or RCS/ *,v. master should * have full path. */ string master_; - + /// The status of the VC controlled file. VCStatus vcstatus; - - /** + + /** * The version of the VC file. I am not sure if this can be a - * string or if it must be a float/int. + * string or if it must be a float/int. */ string version_; - + /// The user currently keeping the lock on the VC file. string locker_; /// The buffer using this VC @@ -154,7 +154,7 @@ public: protected: virtual void scanMaster(); - + private: string file_; };