Files
opm-common/sunbeam/group.hpp
Jens Gåsemyr Magnus 8f89b598f4 Split sunbeam.cpp
Split file in order to enhance c++ source file structure
2017-09-04 15:40:22 +02:00

23 lines
339 B
C++

#ifndef SUNBEAM_GROUP_HPP
#define SUNBEAM_GROUP_HPP
#include <boost/python.hpp>
#include "converters.hpp"
namespace Opm {
class Group;
}
namespace group {
namespace py = boost::python;
using namespace Opm;
py::list wellnames( const Group& g, size_t timestep );
void export_Group();
}
#endif //SUNBEAM_GROUP_HPP