00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef OB_DLHANDLER_H
00020 #define OB_DLHANDLER_H
00021
00022 #include <openbabel/babelconfig.h>
00023
00024 #include <string>
00025 #include <vector>
00026
00027
00028
00029 #ifndef OBCONV
00030 #define OBCONV
00031 #endif
00032 #ifndef OBDLL
00033 #define OBDLL
00034 #endif
00035
00046 class OBCONV DLHandler
00047 {
00048 public:
00049
00054 static bool getConvDirectory(std::string& convPath);
00055
00065 static int findFiles (std::vector <std::string>& file_list,
00066 const std::string& pattern, const std::string& path);
00067
00074 static int findFiles (std::vector<std::string>& file_list,const std::string &filename);
00075
00077 static bool openLib(const std::string& lib_name);
00078
00080 static const char* getFormatFilePattern();
00081
00083 static char getSeparator();
00084
00086 static void Sleep(int n);
00087
00088 };
00089
00090 #endif
00091