LArSoft  v07_13_02
Liquid Argon Software toolkit - http://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 45 of file test00.cc.

References greet().

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

Definition at line 34 of file test00.cc.

Referenced by BOOST_PYTHON_MODULE().

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