![]() |
QxOrm 1.1.9
C++ Object Relational Mapping library
|
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak.h [code] | QxOrm library memory leak detection (by Wu Yongwei) |
D:/Dvlp/_Perso/QxOrm/include/QxOrm.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxPrecompiled.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxCollection/IxCollection.h [code] | Common interface for all QxOrm containers qx::QxCollection<Key, Value> |
D:/Dvlp/_Perso/QxOrm/include/QxCollection/QxCollection.h [code] | QxOrm container (keep insertion order + quick access by index + quick access by key) |
D:/Dvlp/_Perso/QxOrm/include/QxCollection/QxCollectionIterator.h [code] | Java-style iterator to iterate over a qx::QxCollection<Key, Value> container |
D:/Dvlp/_Perso/QxOrm/include/QxCollection/QxForeach.h [code] | Foreach-style (based on BOOST_FOREACH macro) to iterate over all stl, boost and Qt containers + qx::QxCollection<Key, Value> QxOrm library container |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxBool.h [code] | Qx_bool : QxOrm library boolean type with code and description message when an error occured |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxCache.h [code] | Qx::cache : based on singleton pattern, provide basic thread-safe cache feature to backup and restore any kind of objects (for example, object fetched from database) |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxConfig.h [code] | List of parameters to compile and build QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxHashValue.h [code] | Specialize hash_value function for some Qt and boost types (used for example by qx::QxCollection<Key, Value> container) |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxMacro.h [code] | List of common macros used by QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxMainPage.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxPropertyBag.h [code] | Used by introspection engine (IxClass, IxDataMember, IxFunction, etc.) to add meta-data (property bag) |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxSimpleCrypt.h [code] | Qx::QxSimpleCrypt : simple encryption and decryption of strings and byte arrays |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxStringCvt.h [code] | Qx::cvt : namespace to provide global functions to convert any kind of objects to/from QString and QVariant format |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxStringCvt_Export.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxCommon/QxStringCvt_Impl.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxDao/IxSqlQueryBuilder.h [code] | Common interface to build SQL queries to communicate with database |
D:/Dvlp/_Perso/QxOrm/include/QxDao/IxSqlRelation.h [code] | Common interface for all relationships defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDao.h [code] | Provide template functions to map C++ class registered into QxOrm context with table database (ORM - Object Relational Mapping) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDao_Impl.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDao_IsDirty.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDaoPointer.h [code] | Qx::dao::ptr<T> : provide a classic smart-pointer (like boost::shared_ptr<T> or QSharedPointer<T>) with some features associated with QxDao module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDaoStrategy.h [code] | Class inheritance strategy and database (Concrete Table Inheritance is the default strategy used by QxOrm library) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDateNeutral.h [code] | Helper class to store a date value into database under neutral format (YYYYMMDD) => cross database compatibility |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxDateTimeNeutral.h [code] | Helper class to store a date-time value into database under neutral format (YYYYMMDDHHMMSS) => cross database compatibility |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSession.h [code] | Define a session to manage automatically database transactions (using C++ RAII) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSoftDelete.h [code] | Soft delete (or logical delete) behavior to update a row into database (flag it as deleted) instead of delete it from database |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlDatabase.h [code] | Define all parameters to connect to database and retrieve a valid connection by thread |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlError.h [code] | Define a SQL error exception and retrieve QSqlError type of Qt library |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlQuery.h [code] | Define a user SQL query added to default SQL query builded by QxOrm library, and used by qx::dao::xxx functions to filter elements fetched from database |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlQueryBuilder.h [code] | Concrete SQL query builder by class with a cache mechanism to backup and restore queries already builded by the program |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlQueryHelper.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation.h [code] | Base class for all relationships defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation_ManyToMany.h [code] | Manage a relationship many-to-many defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation_ManyToOne.h [code] | Manage a relationship many-to-one defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation_OneToMany.h [code] | Manage a relationship one-to-many defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation_OneToOne.h [code] | Manage a relationship one-to-one defined between 2 classes (or between 2 tables in database) |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelation_RawData.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxSqlRelationParams.h [code] | Define list of parameters to transfer to relationships to manage SQL queries builded by QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxDao/QxTimeNeutral.h [code] | Helper class to store a time value into database under neutral format (HHMMSS) => cross database compatibility |
D:/Dvlp/_Perso/QxOrm/include/QxDataMember/IxDataMember.h [code] | Common interface for all class properties registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxDataMember/IxDataMemberX.h [code] | Common interface for a list of IxDataMember class properties registered into QxOrm context (for example, list of data member of a class) |
D:/Dvlp/_Perso/QxOrm/include/QxDataMember/QxDataMember.h [code] | Concrete class property registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxDataMember/QxDataMember_QObject.h [code] | Connect Qt introspection engine (based on QObject class, with QMetaObject type) to QxOrm library introspection engine |
D:/Dvlp/_Perso/QxOrm/include/QxDataMember/QxDataMemberX.h [code] | Concrete list of class properties registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxFactory/IxFactory.h [code] | Common interface for all classes that can be created dynamically using the class name |
D:/Dvlp/_Perso/QxOrm/include/QxFactory/QxFactory.h [code] | Concrete factory class to create object dynamically using the class name |
D:/Dvlp/_Perso/QxOrm/include/QxFactory/QxFactoryX.h [code] | List of all classes registered with QxOrm library factory pattern to create object instance dynamically using the class name |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/IxFunction.h [code] | Common interface for all functions registered into QxOrm context (used by introspection engine) |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_0.h [code] | Concrete function class registered into QxOrm context without parameter |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_1.h [code] | Concrete function class registered into QxOrm context with 1 parameter |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_2.h [code] | Concrete function class registered into QxOrm context with 2 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_3.h [code] | Concrete function class registered into QxOrm context with 3 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_4.h [code] | Concrete function class registered into QxOrm context with 4 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_5.h [code] | Concrete function class registered into QxOrm context with 5 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_6.h [code] | Concrete function class registered into QxOrm context with 6 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_7.h [code] | Concrete function class registered into QxOrm context with 7 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_8.h [code] | Concrete function class registered into QxOrm context with 8 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunction_9.h [code] | Concrete function class registered into QxOrm context with 9 parameters |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunctionError.h [code] | Define all messages when an error occured using QxFunction module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunctionInclude.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxFunctionMacro.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxFunction/QxParameters.h [code] | Qx::function::detail::get_param_X() : provide some helper functions to retrieve parameters for all qx::IxFunction registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/bool_array.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/class_level_lock.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/cont_ptr_utils.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/debug_new.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/fast_mutex.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/fixed_mem_pool.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/mem_leak.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/mem_pool_base.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/object_level_lock.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/pctimer.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/set_assign.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/static_assert.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxMemLeak/static_mem_pool.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/IxClass.h [code] | Common interface for all classes registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/IxTypeInfo.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxClass.h [code] | Concrete class registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxClassName.h [code] | Provide a class helper to retrieve the class name under const char * format |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxClassX.h [code] | List of all classes registered into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxRegister.h [code] | Provide macros to register a class into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxRegisterInternalHelper.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxRegister/QxRegisterQtProperty.h [code] | Register automatically Qt meta-property defined with Q_PROPERTY() macro into QxOrm context |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxArchive.h [code] | Provide some tools to serialize a class registered into QxOrm context into/from binary/XML archive (file, string, etc.) |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxClone.h [code] | Clone all classes registered into QxOrm context using QxOrm library serialization engine |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxDump.h [code] | Dump all classes registered into QxOrm context using XML serialization engine |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxSerialize.h [code] | Include all files necessary to serialize most used classes defined into stl, boost and Qt libraries |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxSerializeFastCompil.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxSerializeInvoker.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxSerializeMacro.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxExportDllBoostArchive.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxExportDllMacroCpp.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxExportDllMacroHpp.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxImportDllBoostArchive.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxSerialize_shared_ptr.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxSerialize_tuple.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxSerialize_unordered_map.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxSerialize_unordered_set.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/QxSerializeInclude.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/class_export/qx_boost_class_export.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/portable_binary/portable_archive_exception.hpp [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/portable_binary/portable_iarchive.hpp [code] | Provides an archive to read from portable binary files |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/boost/portable_binary/portable_oarchive.hpp [code] | Provides an archive to create portable binary files |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QBrush.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QByteArray.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QColor.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QDate.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QDateTime.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QFont.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QHash.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QImage.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QLinkedList.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QList.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QMap.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QMatrix.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QMultiHash.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QMultiMap.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QObject.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QPair.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QPicture.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QPixmap.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QPoint.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QRect.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QRegExp.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QRegion.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QScopedPointer.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QSharedPointer.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QSize.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QString.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QStringList.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QTime.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QUrl.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QUuid.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QVariant.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QVector.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qt/QxSerialize_QWeakPointer.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qx/QxSerialize_QxCollection.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qx/QxSerialize_QxDaoPointer.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qx/QxSerialize_QxXmlReader.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/Qx/QxSerialize_QxXmlWriter.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxBoostSerializeHelper/IxBoostSerializeRegisterHelper.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxBoostSerializeHelper/QxBoostInitGuid.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxBoostSerializeHelper/QxBoostSerializeHelper.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxBoostSerializeHelper/QxBoostSerializeRegisterHelper.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxSerialize/QxBoostSerializeHelper/QxBoostSerializeRegisterHelperX.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxService/IxParameter.h [code] | Common interface for all parameters transfered by QxService module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxService/IxService.h [code] | Common interface for all services defined with QxService module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxClientAsync.h [code] | Provide a class helper to easily execute an asynchronous transaction using a multi-thread process |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxConnect.h [code] | Define connection parameters used by QxService module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxServer.h [code] | Server side to manage a thread pool of incoming connections (new request from client) |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxService.h [code] | Concrete service class defined with QxService module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxThread.h [code] | Thread to execute a transaction of QxService module |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxThreadPool.h [code] | Thread pool to manage list of threads for executing all transactions of QxService module |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxTools.h [code] | Provide some tools to read/write on socket all datas transfered by QxService module of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxService/QxTransaction.h [code] | Transaction of QxService module (contains request from client and reply from server) |
D:/Dvlp/_Perso/QxOrm/include/QxSingleton/IxSingleton.h [code] | Common interface for all singleton of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxSingleton/QxSingleton.h [code] | Concrete class to define a thread-safe singleton of QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxSingleton/QxSingletonX.h [code] | List of all singleton defined by QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/archive_printable.h [code] | Qx::trait::is_archive_printable<T>::value : define if a boost::archive type is readable by a human (for example XML archive) or not (for example binary archive) |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/archive_wide_traits.h [code] | Qx::trait::is_archive_wide<T>::value : define if a boost::archive type uses wide string character and stream (for example std::wstring) or not (for example std::string) |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/construct_ptr.h [code] | Qx::trait::construct_ptr<T>::get(T & t) : instantiate a new pointer, support both nude-pointer and smart-pointer of boost, Qt and QxOrm libraries |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/generic_container.h [code] | Qx::trait::generic_container<T> : provide some tools to manage all containers without knowing its type |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/get_base_class.h [code] | Qx::trait::get_base_class<T>::type : retrieve base class of type T registered into QxOrm context and return qx::trait::no_base_class_defined if no base class defined |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/get_class_name.h [code] | Qx::trait::get_class_name<T>::get() : return class name of type T under const char * format, T must be registered with QX_REGISTER_CLASS_NAME(T) macro |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/get_class_name_primitive.h [code] | Register all primitive and useful types of stl, boost and Qt libraries using QX_REGISTER_CLASS_NAME(T) macro |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/get_primary_key.h [code] | Qx::trait::get_primary_key<T>::type : return primary key type of T, by default primary key is long type, use QX_REGISTER_PRIMARY_KEY() macro to register another type (for example QX_REGISTER_PRIMARY_KEY(T, QString)) |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/get_sql_type.h [code] | Qx::trait::get_sql_type<T>::get() : return type name under const char * format used by database engine to map a C++ type T |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_intrusive_ptr.h [code] | Qx::trait::is_boost_intrusive_ptr<T>::value : return true if T is a boost::intrusive_ptr<> smart-pointer, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_scoped_ptr.h [code] | Qx::trait::is_boost_scoped_ptr<T>::value : return true if T is a boost::scoped_ptr<> smart-pointer, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_shared_ptr.h [code] | Qx::trait::is_boost_shared_ptr<T>::value : return true if T is a boost::shared_ptr<> smart-pointer, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_unordered_map.h [code] | Qx::trait::is_boost_unordered_map<T>::value : return true if T is a boost::unordered_map<> or boost::unordered_multimap<> container, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_unordered_set.h [code] | Qx::trait::is_boost_unordered_set<T>::value : return true if T is a boost::unordered_set<> or boost::unordered_multiset<> container, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_boost_weak_ptr.h [code] | Qx::trait::is_boost_weak_ptr<T>::value : return true if T is a boost::weak_ptr<> smart-pointer, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_container.h [code] | Qx::trait::is_container<T>::value : return true if T is a container from stl, boost, Qt or QxOrm library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_container_base_of.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_container_key_value.h [code] | Qx::trait::is_container_key_value<T>::value : return true if T is a map or hash-map (with <Key, Value> template format) container from stl, boost, Qt or QxOrm library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_container_to_pod.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_equal.h [code] | Qx::trait::has_operator_equal_equal<T>::value : return true if T provides operator==() function, T must be registered with QX_TYPE_HAS_OPERATOR_EQUAL_EQUAL(T) macro |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_ptr_base_of.h [code] | Qx::trait::is_ptr_base_of<B, D>::value : return true if B and D are pointer type and (*B) is a base class of (*D) or if B and D are same type, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_ptr_to_pod.h [code] | Qx::trait::is_ptr_to_pod<T>::value : return true if T is a pointer to a POD type (char, int, long, etc.), otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_hash.h [code] | Qx::trait::is_qt_hash<T>::value : return true if T is a QHash<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_linked_list.h [code] | Qx::trait::is_qt_linked_list<T>::value : return true if T is a QLinkedList<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_list.h [code] | Qx::trait::is_qt_list<T>::value : return true if T is a QList<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_map.h [code] | Qx::trait::is_qt_map<T>::value : return true if T is a QMap<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_multi_hash.h [code] | Qx::trait::is_qt_multi_hash<T>::value : return true if T is a QMultiHash<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_multi_map.h [code] | Qx::trait::is_qt_multi_map<T>::value : return true if T is a QMultiMap<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_scoped_ptr.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_set.h [code] | Qx::trait::is_qt_set<T>::value : return true if T is a QSet<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_shared_data_ptr.h [code] | Qx::trait::is_qt_shared_data_ptr<T>::value : return true if T is a QSharedDataPointer<> smart-pointer of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_shared_ptr.h [code] | Qx::trait::is_qt_shared_ptr<T>::value : return true if T is a QSharedPointer<> smart-pointer of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_variant_compatible.h [code] | Qx::trait::is_qt_variant_compatible<T>::value : return true if T can be host into a QVariant object of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_vector.h [code] | Qx::trait::is_qt_vector<T>::value : return true if T is a QVector<> container of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qt_weak_ptr.h [code] | Qx::trait::is_qt_weak_ptr<T>::value : return true if T is a QWeakPointer<> smart-pointer of Qt library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qx_collection.h [code] | Qx::trait::is_qx_collection<T>::value : return true if T is a qx::QxCollection<> container of QxOrm library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qx_dao_ptr.h [code] | Qx::trait::is_qx_dao_ptr<T>::value : return true if T is a qx::dao::ptr<> smart-pointer of QxOrm library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qx_pod.h [code] | Qx::trait::is_qx_pod<T>::value : return true if T is a POD type and not a pointer |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_qx_registered.h [code] | Qx::trait::is_qx_registered<T>::value : return true if T is registered into QxOrm context to provide persitence (ORM), serialization and introspection features |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_smart_ptr.h [code] | Qx::trait::is_smart_ptr<T>::value : return true if T is a smart-pointer of boost, Qt or QxOrm libraries, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_smart_ptr_base_of.h [code] | Qx::trait::is_smart_ptr_base_of<B, D>::value : return true if B and D are smart-pointers of boost, Qt or QxOrm libraries and if (*B) is a base class of (*D), otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_smart_ptr_to_pod.h [code] | Qx::trait::is_smart_ptr_to_pod<T>::value : return true if T is a smart-pointer of boost, Qt or QxOrm libraries and (*T) is a POD type (char, int, long, etc.), otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_std_list.h [code] | Qx::trait::is_std_list<T>::value : return true if T is a std::list<> container of stl library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_std_map.h [code] | Qx::trait::is_std_map<T>::value : return true if T is a std::map<> container of stl library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_std_set.h [code] | Qx::trait::is_std_set<T>::value : return true if T is a std::set<> container of stl library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_std_vector.h [code] | Qx::trait::is_std_vector<T>::value : return true if T is a std::vector<> container of stl library, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/is_valid_primary_key.h [code] | Qx::trait::is_valid_primary_key<T>(const T & t) : return true if t can be a valid primary key to be inserted into a database, otherwise return false |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/qt_meta_object.h [code] | Qx::trait::qt_meta_object<T>::get() : if T is based on QObject class, then return QMetaObject instance of Qt introspection engine, else return NULL |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/qx_traits.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/remove_attr.h [code] | Qx::trait::remove_attr<T>::type : return a type without pointer, const, reference and/or volatile attributes |
D:/Dvlp/_Perso/QxOrm/include/QxTraits/remove_smart_ptr.h [code] | Qx::trait::remove_smart_ptr<T>::type : return a type without smart-pointer attribute from boost, Qt or QxOrm library |
D:/Dvlp/_Perso/QxOrm/include/QxXml/QxXml.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxXml/QxXmlReader.h [code] | |
D:/Dvlp/_Perso/QxOrm/include/QxXml/QxXmlWriter.h [code] |