View Single Post
  #1 (permalink)  
Old 03-24-2004
damingyipai damingyipai is offline
Registered User
 
 
Join Date: Jan 2004
Posts: 59
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
Reply With Quote