LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
test00.cc File Reference
#include <boost/python.hpp>

Go to the source code of this file.

Functions

char const * greet ()
 
 BOOST_PYTHON_MODULE (test00)
 

Function Documentation

BOOST_PYTHON_MODULE ( test00  )

Definition at line 44 of file test00.cc.

References greet().

45 {
46  def("greet", greet);
47 }
char const * greet()
Definition: test00.cc:33
char const* greet ( )

Definition at line 33 of file test00.cc.

Referenced by BOOST_PYTHON_MODULE().

34 {
35  return "Hallo World!!";
36 }