00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #pragma once
00011 #include "ippUtest.h"
00012 #include <string>
00013 #include <windows.h>
00014 #undef SetProp
00015
00016 class ippTestFolder
00017 {
00018 public:
00019 ippTestFolder();
00020
00021 bool find_first_file(const char* folder,const char* filepattern);
00022 std::string current_filename() const;
00023 bool next();
00024 ~ippTestFolder();
00025 private:
00026 WIN32_FIND_DATA _data;
00027 HANDLE _hFindFile;
00028 std::string _folder;
00029 };
00030
00031 std::string test_file_folder();