QxOrm  1.3.2
C++ Object Relational Mapping library
QxDao_Impl.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 **
00003 ** http://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 <boost/static_assert.hpp>
00040 #include <boost/mpl/if.hpp>
00041 #include <boost/mpl/logical.hpp>
00042 #include <boost/type_traits/is_pointer.hpp>
00043 
00044 #include <QxDao/QxDao.h>
00045 #include <QxDao/QxDaoPointer.h>
00046 #include <QxDao/QxDao_IsDirty.h>
00047 #include <QxDao/QxSqlDatabase.h>
00048 #include <QxDao/QxSqlQueryBuilder.h>
00049 #include <QxDao/QxSqlQueryHelper.h>
00050 
00051 #include <QxCollection/QxCollection.h>
00052 
00053 #include <QxRegister/QxClass.h>
00054 
00055 #include <QxTraits/is_qx_registered.h>
00056 #include <QxTraits/is_container.h>
00057 #include <QxTraits/is_smart_ptr.h>
00058 #include <QxTraits/get_base_class.h>
00059 #include <QxTraits/get_class_name_primitive.h>
00060 #include <QxTraits/construct_ptr.h>
00061 #include <QxTraits/generic_container.h>
00062 #include <QxTraits/is_valid_primary_key.h>
00063 
00064 #include "../../inl/QxDao/QxDao_Helper.inl"
00065 #include "../../inl/QxDao/QxDao_Count.inl"
00066 #include "../../inl/QxDao/QxDao_FetchById.inl"
00067 #include "../../inl/QxDao/QxDao_FetchById_WithRelation.inl"
00068 #include "../../inl/QxDao/QxDao_FetchAll.inl"
00069 #include "../../inl/QxDao/QxDao_FetchAll_WithRelation.inl"
00070 #include "../../inl/QxDao/QxDao_Insert.inl"
00071 #include "../../inl/QxDao/QxDao_Insert_WithRelation.inl"
00072 #include "../../inl/QxDao/QxDao_Update.inl"
00073 #include "../../inl/QxDao/QxDao_Update_Optimized.inl"
00074 #include "../../inl/QxDao/QxDao_Update_WithRelation.inl"
00075 #include "../../inl/QxDao/QxDao_Save.inl"
00076 #include "../../inl/QxDao/QxDao_Save_WithRelation.inl"
00077 #include "../../inl/QxDao/QxDao_Save_WithRelation_Recursive.inl"
00078 #include "../../inl/QxDao/QxDao_DeleteById.inl"
00079 #include "../../inl/QxDao/QxDao_DeleteAll.inl"
00080 #include "../../inl/QxDao/QxDao_Exist.inl"
00081 #include "../../inl/QxDao/QxDao_CreateTable.inl"
00082 #include "../../inl/QxDao/QxDao_Trigger.inl"
00083 #include "../../inl/QxDao/QxDao_ExecuteQuery.inl"
00084 
00085 #endif // _QX_DAO_IMPL_H_