/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #ifndef headerfilecmslucoregroups #define headerfilecmslucoregroups #include #include "group.h" #include "ugcontainer.h" #include "db.h" class Groups { typedef UGContainer Table; Table table; public: typedef Table::Iterator Iterator; typedef Table::SizeType SizeType; Groups(); void Clear(); void ReadGroups(Db * db); Group * GetGroup(long group_id); Group * GetGroup(const std::string & name); long GetGroupId(const std::string & name); Iterator Begin(); Iterator End(); SizeType Size(); Group & operator[](SizeType pos); }; #endif