Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

ippTestFolder.h

Go to the documentation of this file.
00001 // 
00002 // DISCLAIMER: 
00003 //  This software was produced by the National Institute of Standards 
00004 //  and Technology (NIST), an agency of the U.S. government, and by statute is 
00005 //  not subject to copyright in the United States.  Recipients of this 
00006 //  software assume all responsibility associated with its operation,
00007 //  modification,maintenance, and subsequent redistribution. 
00008 //
00009 //  See NIST Administration Manual 4.09.07 b and Appendix I. 
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();

Generated on Wed Nov 8 00:20:09 2006 for IPPDME by  doxygen 1.4.1