Go to the
documentation of this file.
00001 #ifndef __FBSDK_H__
00002 #define __FBSDK_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00044 #include <fbsdk/fbcomponent.h>
00045 #include <fbsdk/fbcore.h>
00046 #include <fbsdk/fbconfigfile.h>
00047 #include <fbsdk/fbio.h>
00048
00049 #include <fbsdk/fbmath.h>
00050 #include <fbsdk/fbimage.h>
00051 #include <fbsdk/fbmodel.h>
00052 #include <fbsdk/fbplug.h>
00053
00054 #include <fbsdk/fbscene.h>
00055 #include <fbsdk/fbshader.h>
00056 #include <fbsdk/fbsystem.h>
00057 #include <fbsdk/fbrenderer.h>
00058 #include <fbsdk/fbkeyinggroup.h>
00059
00060 #include <fbsdk/fbprofiler.h>
00061
00062 #if !defined(K_NO_AUDIO)
00063 #include <fbsdk/fbaudio.h>
00064 #endif
00065
00066 #if !defined(K_NO_DECK)
00067 #include <fbsdk/fbdeck.h>
00068 #endif
00069
00070 #if !defined(K_NO_CHARACTER)
00071 #include <fbsdk/fbcharacter.h>
00072 #include <fbsdk/fbcharacterface.h>
00073 #include <fbsdk/fbcharacterextension.h>
00074 #include <fbsdk/fbcharactersolver.h>
00075 #endif
00076
00077 #if !defined(K_NO_FOLDER)
00078 #include <fbsdk/fbfolder.h>
00079 #endif
00080
00081 #if !defined(K_NO_MANIPULATOR)
00082 #include <fbsdk/fbmanipulator.h>
00083 #endif
00084
00085 #if !defined(K_NO_NOTE)
00086 #include <fbsdk/fbnote.h>
00087 #endif
00088
00089 #if !defined(K_NO_OPTICAL)
00090 #include <fbsdk/fboptical.h>
00091 #endif
00092
00093 #if !defined(K_NO_POSE)
00094 #include <fbsdk/fbpose.h>
00095 #include <fbsdk/fbobjectpose.h>
00096 #if !defined(K_NO_CHARACTER)
00097 #include <fbsdk/fbcharacterpose.h>
00098 #endif
00099 #endif
00100
00101 #if !defined(K_NO_STORY)
00102 #include <fbsdk/fbstory.h>
00103 #endif
00104
00105 #include <fbsdk/fbmotion.h>
00106
00107 #if !defined(K_NO_VIDEO)
00108 #include <fbsdk/fbvideo.h>
00109 #include <fbsdk/fbvideocodecmanager.h>
00110 #endif
00111
00112 #if !defined(K_NO_RENDERER)
00113 #include <fbsdk/fbvideograbber.h>
00114 #endif
00115
00116 #include <fbsdk/fbconstraint.h>
00117 #include <fbsdk/fbfilter.h>
00118 #include <fbsdk/fbgroup.h>
00119
00120 #include <fbsdk/fbpython.h>
00121
00122 #if !defined(K_NO_UI)
00123
00124 #include <fbcontrols/fbcontrols.h>
00125 #include <fbcontrols/fbgenericmenu.h>
00126 #include <fbcontrols/fbtool.h>
00127 #include <fbcontrols/fbuiutil.h>
00128 #include <fbcontrols/fbconstraintlayout.h>
00129 #include <fbcontrols/fbdecklayout.h>
00130 #include <fbcontrols/fbdevicelayout.h>
00131 #include <fbcontrols/fbmanipulatorlayout.h>
00132 #include <fbcontrols/fbshaderlayout.h>
00133 #else
00134
00135 inline int FBMessageBox( char* pBoxTitle, char* pMessage, char* pButton1Str, char* pButton2Str=NULL, char* pButton3Str=NULL, int pDefaultButton=0, int pScrolledMessage=0) { return pDefaultButton; }
00136 inline int FBMessageBoxWithCheck( char* pBoxTitle, char* pMessage, char* pButton1Str, char* pButton2Str, char* pButton3Str, char* pCheckBoxStr, bool& pCheckBoxValue, int pDefaultButton=0, int pScrolledMessage=0) { return pDefaultButton; }
00137 #endif
00138
00139 #ifdef _MSC_VER
00140 #pragma warning (disable: 4660) // template-class specialization 'xx<class x*>' is alread instantiated
00141 #pragma warning (disable: 4702) // unreachable code
00142 #endif
00143
00144 #ifdef FBSDKUseNamespace
00145 using namespace FBSDKNamespace;
00146 #endif
00147
00148 #endif