Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00015 #ifndef FBXFILESDK_KFBXIO_KFBXSTATISTICSFBX_H
00016 #define FBXFILESDK_KFBXIO_KFBXSTATISTICSFBX_H
00017
00018
00019 #include <fbxfilesdk/fbxfilesdk_def.h>
00020
00021 #include <fbxfilesdk/kfbxplugins/kfbxstatistics.h>
00022
00023 #include <fbxfilesdk/fbxfilesdk_nsbegin.h>
00024
00027 class KFbxStatisticsFbx : public KFbxStatistics
00028 {
00029 public:
00030 virtual bool AddItem(KString& pItemName, int pItemCount)
00031 {
00032 mItemName.Add( FbxSdkNew< KString >(pItemName) );
00033 mItemCount.Add( pItemCount);
00034 return true;
00035 };
00036 };
00037
00038 #include <fbxfilesdk/fbxfilesdk_nsend.h>
00039
00040 #endif // FBXFILESDK_KFBXIO_KFBXSTATISTICSFBX_H
00041