ultimatepp/bazaar/CoreBoostPy/CoreBoostPy.h
kohait 8e20616dd9 bazaar: CoreBoostPy: using namespace fixes, cllided with stdlib typedefs (i.e. ssize_t), Urr: redundant includes
git-svn-id: svn://ultimatepp.org/upp/trunk@3953 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-10-04 10:42:12 +00:00

26 lines
464 B
C++

#ifndef _CoreBoostPy_CoreBoostPy_h_
#define _CoreBoostPy_CoreBoostPy_h_
#include "Misc.h"
#include "GTypes.h"
#include "String.h"
#include "Value.h"
#include "Callback.h"
NAMESPACE_UPP
class PyEvalConvert : public Convert
{
public:
boost::python::object globals;
mutable boost::python::object locals; //added to by Format
String expr;
virtual Value Format(const Value& q) const;
};
void export_Core();
END_UPP_NAMESPACE
#endif