36 lines
610 B
C++
36 lines
610 B
C++
/* -----------------------------------------------------------------------------
|
|
GSFramework
|
|
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
|
----------------------------------------------------------------------------- */
|
|
|
|
|
|
#ifndef __NUI_GROUP__
|
|
#define __NUI_GROUP__
|
|
|
|
|
|
#include "container/nlist.h"
|
|
#include "nstring/nstring.h"
|
|
|
|
|
|
namespace GS {
|
|
namespace S2D {
|
|
class Item;
|
|
|
|
/*!
|
|
@short UI Group.
|
|
@author Emmanuel Julien (ejulien@nworks.fr)
|
|
*/
|
|
struct Group
|
|
{
|
|
String name;
|
|
List <Item *> item_list;
|
|
|
|
bool IsMember(const Item *) const;
|
|
};
|
|
|
|
} // S2D
|
|
} // GS
|
|
|
|
|
|
#endif // __NUI_GROUP__
|