OpenCog Framework  Branch: master, revision 6f0b7fc776b08468cf1b74aa9db028f387b4f0c0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PyScheme.h
Go to the documentation of this file.
1 //
2 #ifndef _OPENCOG_PYTHON_SCHEME_H
3 #define _OPENCOG_PYTHON_SCHEME_H
4 
5 #include <string>
7 
8 namespace opencog
9 {
10 
12 std::string eval_scheme(AtomSpace& as, const std::string &s);
13 Handle eval_scheme_h(AtomSpace& as, const std::string &s);
14 
15 } // namespace opencog
16 
17 #endif // _OPENCOG_PYTHON_SCHEME_H
18 
Handle eval_scheme_h(AtomSpace &as, const std::string &s)
Definition: PyScheme.cc:61
std::string eval_scheme(AtomSpace &as, const std::string &s)
Definition: PyScheme.cc:48