From: Arvin Schnell Date: Wed, 26 Feb 2014 14:32:25 +0000 (+0100) Subject: - added documentation X-Git-Tag: v0.2.2~16^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F53%2Fhead;p=thirdparty%2Fsnapper.git - added documentation --- diff --git a/snapper/File.h b/snapper/File.h index b6783f33..4a7aee72 100644 --- a/snapper/File.h +++ b/snapper/File.h @@ -1,5 +1,5 @@ /* - * Copyright (c) [2011-2012] Novell, Inc. + * Copyright (c) [2011-2014] Novell, Inc. * * All Rights Reserved. * @@ -38,8 +38,16 @@ namespace snapper enum StatusFlags { - CREATED = 1, DELETED = 2, TYPE = 4, CONTENT = 8, PERMISSIONS = 16, OWNER = 32, USER = 32, - GROUP = 64, XATTRS = 128, ACL = 256 + CREATED = 1, // created + DELETED = 2, // deleted + TYPE = 4, // type has changed + CONTENT = 8, // content has changed + PERMISSIONS = 16, // permissions have changed, see chmod(2) + OWNER = 32, // owner has changed, see chown(2) + USER = 32, // deprecated - alias for OWNER + GROUP = 64, // group has changed, see chown(2) + XATTRS = 128, // extended attributes changed, see attr(5) + ACL = 256 // access control list changed, see acl(5) }; enum Cmp