X-Git-Url: http://git.home-dn.net/?p=manu%2Fsuphp.git;a=blobdiff_plain;f=src%2FGroupInfo.hpp;h=0cc7df6fa7efc2d69f119ea17460e942862e20dc;hp=9e871e72ad74662bb5c85552a7f51d7c1bdc14c2;hb=849f4a7977b5780eacae8fad7a078d05f4a615ee;hpb=b0eaa3f1fbf491fdc8a3044cf20754f14254338a diff --git a/src/GroupInfo.hpp b/src/GroupInfo.hpp index 9e871e7..0cc7df6 100644 --- a/src/GroupInfo.hpp +++ b/src/GroupInfo.hpp @@ -37,39 +37,39 @@ namespace suPHP { */ class GroupInfo { private: - int gid; + int gid; public: - /** - * Constructor without arguments. - * Does not create a "valid" object, since it has no well defined GID - */ - GroupInfo(); + /** + * Constructor without arguments. + * Does not create a "valid" object, since it has no well defined GID + */ + GroupInfo(); - /** - * Contructor (creates group object from GID) - */ - GroupInfo(int gid); + /** + * Contructor (creates group object from GID) + */ + GroupInfo(int gid); - /** - * Returns groupname - */ - std::string getGroupname() const throw (LookupException); - - /** - * Returns GID - */ - int getGid() const; + /** + * Returns groupname + */ + std::string getGroupname() const throw (LookupException); + + /** + * Returns GID + */ + int getGid() const; - /** - * Compares to GroupInfo objects for equality - */ - bool operator==(const GroupInfo& ginfo) const; - - /** - * Overloaded operator != - */ - bool operator!=(const GroupInfo& ginfo) const; + /** + * Compares to GroupInfo objects for equality + */ + bool operator==(const GroupInfo& ginfo) const; + + /** + * Overloaded operator != + */ + bool operator!=(const GroupInfo& ginfo) const; }; };