first commit
This commit is contained in:
35
include/engine/ui/ui_group.h
Normal file
35
include/engine/ui/ui_group.h
Normal file
@ -0,0 +1,35 @@
|
||||
/* -----------------------------------------------------------------------------
|
||||
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__
|
||||
Reference in New Issue
Block a user