QxOrm  1.4.9
C++ Object Relational Mapping library
QxDao_Impl.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 **
00003 ** https://www.qxorm.com/
00004 ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
00005 **
00006 ** This file is part of the QxOrm library
00007 **
00008 ** This software is provided 'as-is', without any express or implied
00009 ** warranty. In no event will the authors be held liable for any
00010 ** damages arising from the use of this software
00011 **
00012 ** Commercial Usage
00013 ** Licensees holding valid commercial QxOrm licenses may use this file in
00014 ** accordance with the commercial license agreement provided with the
00015 ** Software or, alternatively, in accordance with the terms contained in
00016 ** a written agreement between you and Lionel Marty
00017 **
00018 ** GNU General Public License Usage
00019 ** Alternatively, this file may be used under the terms of the GNU
00020 ** General Public License version 3.0 as published by the Free Software
00021 ** Foundation and appearing in the file 'license.gpl3.txt' included in the
00022 ** packaging of this file. Please review the following information to
00023 ** ensure the GNU General Public License version 3.0 requirements will be
00024 ** met : http://www.gnu.org/copyleft/gpl.html
00025 **
00026 ** If you are unsure which license is appropriate for your use, or
00027 ** if you have questions regarding the use of this file, please contact :
00028 ** contact@qxorm.com
00029 **
00030 ****************************************************************************/
00031 
00032 #ifndef _QX_DAO_IMPL_H_
00033 #define _QX_DAO_IMPL_H_
00034 
00035 #ifdef _MSC_VER
00036 #pragma once
00037 #endif
00038 
00039 #include <QxDao/QxDao.h>
00040 #include <QxDao/QxDaoPointer.h>
00041 #include <QxDao/QxDao_IsDirty.h>
00042 #include <QxDao/QxSqlDatabase.h>
00043 #include <QxDao/QxSqlQueryBuilder.h>
00044 #include <QxDao/QxSqlQueryHelper.h>
00045 
00046 #include <QxCollection/QxCollection.h>
00047 
00048 #include <QxRegister/QxClass.h>
00049 
00050 #include <QxTraits/is_qx_registered.h>
00051 #include <QxTraits/is_container.h>
00052 #include <QxTraits/is_smart_ptr.h>
00053 #include <QxTraits/get_base_class.h>
00054 #include <QxTraits/get_class_name_primitive.h>
00055 #include <QxTraits/construct_ptr.h>
00056 #include <QxTraits/generic_container.h>
00057 #include <QxTraits/is_valid_primary_key.h>
00058 
00059 #ifdef _QX_ENABLE_MONGODB
00060 #include <QxDao/QxMongoDB/QxMongoDB_Helper.h>
00061 #ifndef _QX_NO_JSON
00062 #include <QxSerialize/QJson/QxSerializeQJson_qx_registered_class.h>
00063 #include <QxSerialize/QxSerializeQJson.h>
00064 #endif // _QX_NO_JSON
00065 #endif // _QX_ENABLE_MONGODB
00066 
00067 #include "../../inl/QxDao/QxDao_Helper.inl"
00068 #include "../../inl/QxDao/QxDao_Count.inl"
00069 #include "../../inl/QxDao/QxDao_FetchById.inl"
00070 #include "../../inl/QxDao/QxDao_FetchById_WithRelation.inl"
00071 #include "../../inl/QxDao/QxDao_FetchAll.inl"
00072 #include "../../inl/QxDao/QxDao_FetchAll_WithRelation.inl"
00073 #include "../../inl/QxDao/QxDao_Insert.inl"
00074 #include "../../inl/QxDao/QxDao_Insert_WithRelation.inl"
00075 #include "../../inl/QxDao/QxDao_Update.inl"
00076 #include "../../inl/QxDao/QxDao_Update_Optimized.inl"
00077 #include "../../inl/QxDao/QxDao_Update_WithRelation.inl"
00078 #include "../../inl/QxDao/QxDao_Save.inl"
00079 #include "../../inl/QxDao/QxDao_Save_WithRelation.inl"
00080 #include "../../inl/QxDao/QxDao_Save_WithRelation_Recursive.inl"
00081 #include "../../inl/QxDao/QxDao_DeleteById.inl"
00082 #include "../../inl/QxDao/QxDao_DeleteAll.inl"
00083 #include "../../inl/QxDao/QxDao_Exist.inl"
00084 #include "../../inl/QxDao/QxDao_CreateTable.inl"
00085 #include "../../inl/QxDao/QxDao_Trigger.inl"
00086 #include "../../inl/QxDao/QxDao_ExecuteQuery.inl"
00087 
00088 #endif // _QX_DAO_IMPL_H_