123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef __PYTHON_RCODE_H
- #define __PYTHON_RCODE_H 1
- #include <Python.h>
- namespace isc {
- namespace dns {
- class Rcode;
- namespace python {
- class s_Rcode : public PyObject {
- public:
- s_Rcode();
- const Rcode* cppobj;
- bool static_code;
- };
- extern PyTypeObject rcode_type;
- bool initModulePart_Rcode(PyObject* mod);
- }
- }
- }
- #endif // __PYTHON_RCODE_H
|