File: poly_wrap.h

package info (click to toggle)
singular 1%3A4.1.1-p2%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 35,856 kB
  • sloc: cpp: 288,280; ansic: 17,387; lisp: 4,242; yacc: 1,654; python: 1,608; makefile: 1,424; lex: 1,387; perl: 632; sh: 567; xml: 182
file content (9 lines) | stat: -rw-r--r-- 246 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
#ifndef POLY_WRAP_HEADER
#define POLY_WRAP_HEADER
#include <boost/python.hpp>
#include "kernel/mod2.h"
#include "Poly.h"
void export_poly();
boost::python::str Poly_as_str(const Poly& p);
boost::python::str Vector_as_str(const Vector& p);
#endif