ultimatepp/bazaar/CoreBoostPy/CoreBoostPy.h
kohait 6e96b9a399 bazaar: BoostPy: means of exception catch with info, ValueCtrl: prints ErrorValue
git-svn-id: svn://ultimatepp.org/upp/trunk@3898 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-09-21 16:13:34 +00:00

26 lines
434 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:
object globals;
mutable object locals; //added to by Format
String expr;
virtual Value Format(const Value& q) const;
};
void export_Core();
END_UPP_NAMESPACE
#endif