ref: 08aef1095811c8f436a469208b088002e8f4ed21
dir: /n_hbox.h/
extern char* NHBox_Type;
#define NTYPE NHBox
#define NACCS NHBoxAccessors
typedef struct NACCS NACCS;
struct NACCS {
	Nelemaccessors;
	DECL_SLOTFUNC(Slot);
	DECL_ACCESSOR_OneParam(AutoHeight, int);
};
typedef struct NHBox NHBox;
struct NHBox {
	Nelem;
	
	// private members
	int autoheight;
};
NACCS* New_HBox(char*);
#undef NACCS
#undef NTYPE