00001 /*******************************************************/ 00009 #if !defined(_AJA_FACTORY_H_) 00010 #define _AJA_FACTORY_H_ 00011 00012 #include "aja.h" 00013 00014 namespace aja 00015 { 00016 /*************************************************/ 00021 class Factory 00022 { 00023 public: 00024 static ElementItem* createElement(elementType_t type, number_t id); 00025 static AttributeItem* createAttribute(attributeType_t type, byte_t id); 00026 }; 00027 } 00028 00029 #endif