123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef __PYTHON_EDNS_H
- #define __PYTHON_EDNS_H 1
- #include <Python.h>
- #include <dns/edns.h>
- namespace isc {
- namespace dns {
- namespace python {
- class s_EDNS : public PyObject {
- public:
- EDNS* cppobj;
- };
- extern PyTypeObject edns_type;
- }
- }
- }
- #endif
|