Skip to content
Snippets Groups Projects
Commit 04775b90 authored by Andreas Schenk's avatar Andreas Schenk
Browse files

fixed in source documentation for to python converter templates

parent a5b3a061
No related branches found
No related tags found
No related merge requests found
...@@ -24,8 +24,8 @@ namespace ost { ...@@ -24,8 +24,8 @@ namespace ost {
/// ///
/// Usage: /// Usage:
/// ///
/// register_to_python_converter<PairToTupleConverter<T1, T2>, /// boost::python::to_python_converter<std::pair<T1, T2>,
/// std::pair<T1, T2>>() /// PairToTupleConverter<T1, T2> >()
template<class T1, class T2> template<class T1, class T2>
struct PairToTupleConverter { struct PairToTupleConverter {
static PyObject* convert(const std::pair<T1, T2>& pair) { static PyObject* convert(const std::pair<T1, T2>& pair) {
......
...@@ -29,8 +29,8 @@ namespace ost{ ...@@ -29,8 +29,8 @@ namespace ost{
/// ///
/// Usage: /// Usage:
/// ///
/// register_to_python_converter<VectorToListConverter<T>, /// boost::python::to_python_converter<std::vector<T>,
/// std::vector<T>>() /// VectorToListConverter<T> >()
template<typename T> template<typename T>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment