~ubuntu-branches/ubuntu/saucy/kig/saucy

« back to all changes in this revision

Viewing changes to scripting/python_scripter.cc

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Jonathan Riddell, Harald Sitter
  • Date: 2012-11-19 15:58:49 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20121119155849-l709sjsbjijx422a
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Harald Sitter ]
* Add libboost-python-dev as build dep to enable python script support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
    .def( "data", &VectorImp::data )
255
255
    ;
256
256
 
257
 
  class_<AngleImp, bases<ObjectImp> >( "Angle", init<Coordinate, double, double>() )
 
257
  //TODO find how to mark default
 
258
  class_<AngleImp, bases<ObjectImp> >( "Angle", init<Coordinate, double, double, bool>() )
258
259
    .def( "stype", &AngleImp::stype,
259
260
          return_value_policy<reference_existing_object>() )
260
261
    .staticmethod( "stype" )