00001 #ifndef INCLUDE_ORA_ARRAYHANDLERFACTORY_H 00002 #define INCLUDE_ORA_ARRAYHANDLERFACTORY_H 00003 00004 namespace Reflex { 00005 class Type; 00006 } 00007 00008 namespace ora { 00009 00010 class IArrayHandler; 00011 00017 class ArrayHandlerFactory { 00018 public: 00019 static IArrayHandler* newArrayHandler( const Reflex::Type& arrayType ); 00020 }; 00021 00022 } 00023 00024 #endif