tagging release
[dasher.git] / trunk / Src / DasherCore / Alphabet / GroupInfo.h
blob6f738a1f39dc354f8b6abec98e1cc07915732d26
1 #ifndef __GROUP_INFO_H__
2 #define __GROUP_INFO_H__
4 #include <string>
5 /// \ingroup Alphabet
6 /// \{
7 struct SGroupInfo {
8 SGroupInfo *pChild;
9 SGroupInfo *pNext;
10 std::string strLabel;
11 int iStart;
12 int iEnd;
13 int iColour;
14 bool bVisible;
16 /// \}
18 #endif