00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _UT_FILELIST_H_
00019 #define _UT_FILELIST_H_
00020
00021 #include "UT_API.h"
00022 #include "UT_Pointers.h"
00023 #include "UT_String.h"
00024 #include "UT_VarScan.h"
00025
00026 class UT_API UT_FileList : public UT_Pointers
00027 {
00028 public:
00029 UT_FileList();
00030 UT_FileList( UTVarCallback lookup, void *userdata );
00031
00032 int addRangeOfFiles(const char *filePattern, const int min,
00033 const int max, const int inc);
00034 void sortFiles();
00035
00036 private:
00037 static const char *static_lookup(const char *variable, void *userdata);
00038
00039 int myFrameNumber;
00040 char myFrameText[40];
00041 UTVarCallback myExtraLookup;
00042 void * myUserData;
00043 };
00044
00045 #endif