LAMA
/home/brandes/workspace/LAMA/src/lama/openmp/OpenMPInterface.hpp
Go to the documentation of this file.
00001 
00033 #ifndef LAMA_OPENMPINTERFACE_HPP_
00034 #define LAMA_OPENMPINTERFACE_HPP_
00035 
00036 // for dll_import
00037 #include <lama/config.hpp>
00038 
00039 // base classes
00040 #include <lama/LAMAInterface.hpp>
00041 
00042 // logging
00043 #include <logging/logging.hpp>
00044 
00045 namespace lama
00046 {
00047 
00048 class LAMA_DLL_IMPORTEXPORT OpenMPInterface: public lama::LAMAInterface
00049 {
00050 public:
00051 
00052     OpenMPInterface();
00053 
00054     virtual ~OpenMPInterface();
00055 
00056 private:
00057 
00058     LAMA_LOG_DECL_STATIC_LOGGER(logger);
00059 };
00060 
00061 }
00062 
00063 #endif // LAMA_OPENMPINTERFACE_HPP_