#ifndef __GRID_ATTRIBUT__ #define __GRID_ATTRIBUT__ namespace XMLIOSERVER { class GridAttribut : public virtual AttributRegistrar { public : DECLARE_ATTR(name , string) ; DECLARE_ATTR(description, string) ; DECLARE_ATTR(domain_ref , string) ; DECLARE_ATTR(axis_ref , string) ; GridAttribut(void) : AttributRegistrar() { this->registerAllAttributes(); } private : void registerAllAttributes(void) { RegisterAttribut(&name) ; RegisterAttribut(&description) ; RegisterAttribut(&domain_ref) ; RegisterAttribut(&axis_ref) ; } } ; // class GridAttribut }// namespace XMLIOSERVER #endif //__GRID_ATTRIBUT__