00001
00004 #ifndef FBXFILESDK_KFBXIO_KFBXSTREAMOPTIONS_H
00005 #define FBXFILESDK_KFBXIO_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 <fbxfilesdk/components/kbaselib/kaydaradef_h.h>
00043 #include <fbxfilesdk/kfbxplugins/kfbxsdkmanager.h>
00044 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00045
00046
00052 class KFBX_DLL KFbxStreamOptions : public KFbxObject
00053 {
00054 KFBXOBJECT_DECLARE(KFbxStreamOptions,KFbxObject);
00055
00056 public:
00057
00058
00061 virtual void Reset();
00062
00068 KFbxProperty GetOption(KString& pName);
00069
00070
00076 KFbxProperty GetOption(const char* pName);
00077
00078
00084 template <class T> inline bool SetOption(KString& pName, T const &pValue )
00085 {
00086
00087 KFbxProperty lProperty=this->GetOption(pName);
00088 if(lProperty.IsValid() && FbxTypeOf(pValue) == lProperty.GetPropertyDataType().GetType())
00089 {
00090 lProperty.Set((void*)&pValue, FbxTypeOf(pValue));
00091 return true;
00092 }
00093 return false;
00094 }
00095
00101 template <class T> inline bool SetOption(const char* pName, T const &pValue )
00102 {
00103
00104 KFbxProperty lProperty=this->GetOption(pName);
00105 if(lProperty.IsValid() && FbxTypeOf(pValue) == lProperty.GetPropertyDataType().GetType())
00106 {
00107 lProperty.Set((void*)&pValue, FbxTypeOf(pValue));
00108 return true;
00109 }
00110 return false;
00111 }
00112
00117 bool SetOption(KFbxProperty pProperty);
00118
00122 bool CopyFrom(const KFbxStreamOptions* pKFbxStreamOptionsSrc);
00123
00125
00126
00127
00128
00129
00130
00132
00133 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00134
00135
00136 protected:
00137
00138 KFbxStreamOptions(KFbxSdkManager& pManager, char const* pName);
00139 virtual ~KFbxStreamOptions();
00140 virtual void Destruct(bool pRecursive, bool pDependents);
00141
00142 public:
00143
00144 virtual KFbxObject* Clone(KFbxObject* pContainer, KFbxObject::ECloneType pCloneType) const;
00145 #endif // #ifndef DOXYGEN_SHOULD_SKIP_THIS
00146 };
00147 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00148 #endif // FBXFILESDK_KFBXIO_KFBXSTREAMOPTIONS_H
00149