00001
00004 #ifndef _FBXSDK_KFBXSTREAMOPTIONS_H_
00005 #define _FBXSDK_KFBXSTREAMOPTIONS_H_
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
00039
00040
00041
00042 #include <kaydaradef.h>
00043 #ifndef KFBX_DLL
00044 #define KFBX_DLL K_DLLIMPORT
00045 #endif
00046
00047 #include <kfbxplugins/kfbxsdkmanager.h>
00048 #include <fbxfilesdk_nsbegin.h>
00049
00050
00056 class KFBX_DLL KFbxStreamOptions : public KFbxObject
00057 {
00058 KFBXOBJECT_DECLARE(KFbxStreamOptions,KFbxObject);
00059
00060 public:
00061
00062
00065 virtual void Reset();
00066
00072 KFbxProperty GetOption(KString& pName);
00073
00074
00079 KFbxProperty GetOption(const char* pName);
00080
00081
00087 template <class T> inline bool SetOption(KString& pName, T const &pValue )
00088 {
00089
00090 KFbxProperty lProperty=this->GetOption(pName);
00091 if(lProperty.IsValid() && FbxTypeOf(pValue) == lProperty.GetPropertyDataType().GetType())
00092 {
00093 lProperty.Set((void*)&pValue, FbxTypeOf(pValue));
00094 return true;
00095 }
00096 return false;
00097 }
00098
00104 template <class T> inline bool SetOption(const char* pName, T const &pValue )
00105 {
00106
00107 KFbxProperty lProperty=this->GetOption(pName);
00108 if(lProperty.IsValid() && FbxTypeOf(pValue) == lProperty.GetPropertyDataType().GetType())
00109 {
00110 lProperty.Set((void*)&pValue, FbxTypeOf(pValue));
00111 return true;
00112 }
00113 return false;
00114 }
00115
00120 bool SetOption(KFbxProperty pProperty);
00121
00125 bool CopyFrom(const KFbxStreamOptions* pKFbxStreamOptionsSrc);
00126
00128
00129
00130
00131
00132
00133
00135
00136 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00137
00138
00139 protected:
00140
00141 KFbxStreamOptions(KFbxSdkManager& pManager, char const* pName);
00142 virtual ~KFbxStreamOptions();
00143 virtual void Destruct(bool pRecursive, bool pDependents);
00144
00145 public:
00146
00147 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00148 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00149 };
00150 #include <fbxfilesdk_nsend.h>
00151 #endif