|
forgot me, but I can't declare a recursion nested struct...
struct Nav; // i can not do this;
sequence<Nav> NavItems;
struct Nav{
string title;
NavItems children;
};
because the Nav has any small sub Nav, I'd like to got it by once.
somebody help me ?
thanks
|