00001 // FullPPF is a C++ wrapper for the Fortran PPF systems access methods 00002 // By including this file a new global object is made available through which ppf access is possible. 00003 00004 #ifndef __PPF_CPLUSPLUS_HPP__ 00005 #define __PPF_CPLUSPLUS_HPP__ 00006 00007 #include <vector> 00008 #include <string> 00009 #include "ppftypes.hpp" 00010 #include "ppfsystem.hpp" 00011 #include "ppfdatatype.hpp" 00012 00013 using namespace std; 00014 00015 // namespaces ------------------------------------------------------------------ 00016 00018 namespace ppf 00019 { 00020 00021 // global variables -------------------------------------------------------- 00022 00024 extern system ppfdb; 00025 } 00026 00027 #endif 00028