/**************************************************************************** ** ** https://www.qxorm.com/ ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com) ** ** This file is part of the QxOrm library ** ** This software is provided 'as-is', without any express or implied ** warranty. In no event will the authors be held liable for any ** damages arising from the use of this software ** ** Commercial Usage ** Licensees holding valid commercial QxOrm licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Lionel Marty ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file 'license.gpl3.txt' included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met : http://www.gnu.org/copyleft/gpl.html ** ** If you are unsure which license is appropriate for your use, or ** if you have questions regarding the use of this file, please contact : ** contact@qxorm.com ** ****************************************************************************/ #ifndef _QX_ORM_H_ #define _QX_ORM_H_ #ifdef _MSC_VER #pragma once #endif /*! * \defgroup QxCommon QxCommon : QxOrm library common tools and macros * \defgroup QxCollection QxCollection : QxOrm library container (keep insertion order + quick access by index + quick access by key) * \defgroup QxSingleton QxSingleton : QxOrm library thread-safe singleton pattern * \defgroup QxFactory QxFactory : QxOrm library factory pattern used by introspection engine * \defgroup QxDataMember QxDataMember : QxOrm library data member (or property) used by introspection engine * \defgroup QxFunction QxFunction : QxOrm library function used by introspection engine * \defgroup QxRegister QxRegister : QxOrm library register context used by introspection engine (class, function, property...) * \defgroup QxSerialize QxSerialize : QxOrm library serialization engine based on 'boost::serialization' library * \defgroup QxTraits QxTraits : QxOrm library traits (template metaprogramming) not available in 'boost::type_traits' library * \defgroup QxDao QxDao : QxOrm library database communication used by persistence engine (ORM - Object Relational Mapping) * \defgroup QxValidator QxValidator : QxOrm library validation engine using validator pattern * \defgroup QxModelView QxModelView : All classes registered into QxOrm context can be used with Qt model/view architecture (Qt widgets and/or QML views) * \defgroup QxRestApi QxRestApi : QxOrm library REST API to send requests in JSON format from external application, from web-site or from QML view * \defgroup QxService QxService : QxOrm library services engine to provide easy and powerful way to create C++ application server (to transfer data over network) * \defgroup QxHttpServer QxHttpServer : QxOrm library HTTP server (based on QxService module) : support SSL/TLS, persistent connection, deliver static files, REST API, etc... * \defgroup QxCache QxCache : QxOrm library basic thread-safe cache feature to backup and restore any kind of objects (for example, object fetched from database) * \defgroup QxConvert QxConvert : QxOrm library conversion tools to-from QString type and to-from QVariant type * \defgroup QxExtras QxExtras : QxOrm library extra-tools (for example : enable std::optional for C++17 compilers, enable boost::optional feature without enabling all boost features) * \defgroup QxMemLeak QxMemLeak : QxOrm library memory leak detection (by Wu Yongwei) */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef _QX_ENABLE_MONGODB #include #endif // _QX_ENABLE_MONGODB #ifdef _QX_ENABLE_BOOST_SERIALIZATION #include #endif // _QX_ENABLE_BOOST_SERIALIZATION #include #include #include #include #ifndef _QX_NO_JSON #include #include #endif // _QX_NO_JSON #include #include #include #include #include #include #include #include #include #include #include #include #ifndef _QX_NO_JSON #include #endif // _QX_NO_JSON #include #include #include #include #include #include #include #include #ifdef _QX_ENABLE_QT_NETWORK #include #include #include #include #include #include #include #endif // _QX_ENABLE_QT_NETWORK #endif // _QX_ORM_H_