fbxsdk/fileio/fbxstatisticsfbx.h Source File

fbxstatisticsfbx.h
Go to the documentation of this file.
1 /****************************************************************************************
2 
3  Copyright (C) 2015 Autodesk, Inc.
4  All rights reserved.
5 
6  Use of this software is subject to the terms of the Autodesk license agreement
7  provided at the time of installation or download, or which otherwise accompanies
8  this software in either electronic or hard copy form.
9 
10 ****************************************************************************************/
11 
13 #ifndef _FBXSDK_FILEIO_STATISTICS_FBX_H_
14 #define _FBXSDK_FILEIO_STATISTICS_FBX_H_
15 
16 #include <fbxsdk/fbxsdk_def.h>
17 
19 
20 #include <fbxsdk/fbxsdk_nsbegin.h>
21 
22 /*****************************************************************************************************************************
23 ** WARNING! Anything beyond these lines is for internal use, may not be documented and is subject to change without notice! **
24 *****************************************************************************************************************************/
25 #ifndef DOXYGEN_SHOULD_SKIP_THIS
26 
27 class FbxStatisticsFbx : public FbxStatistics
28 {
29 public:
30  virtual bool AddItem(FbxString& pItemName, int pItemCount)
31  {
32  mItemName.Add( FbxNew< FbxString >(pItemName) );
33  mItemCount.Add( pItemCount);
34  return true;
35  };
36 };
37 
38 #endif /* !DOXYGEN_SHOULD_SKIP_THIS *****************************************************************************************/
39 
40 #include <fbxsdk/fbxsdk_nsend.h>
41 
42 #endif /* _FBXSDK_FILEIO_STATISTICS_FBX_H_ */
FBX SDK environment definition.
virtual bool AddItem(FbxString &, int)
virtual function to define the process of the incoming statistics data.
Definition: fbxstatistics.h:96
Utility class to manipulate strings.
Definition: fbxstring.h:66
This class is a basic class to get the quantity of items.
Definition: fbxstatistics.h:62