comparison oct-py-object.h @ 398:3905052ebe1d

maint: sort uses of new header file oct-py-object.h * Makefile.am (PYTAVE_HEADER_FILES): Sort the list. * oct-py-object.h: Add missing #include <Python.h>. * oct-py-util.cc: Sort the include files.
author Mike Miller <mtmiller@octave.org>
date Fri, 28 Apr 2017 09:03:55 -0700
parents fc0fb94161de
children 3a64a336d214
comparison
equal deleted inserted replaced
397:fc0fb94161de 398:3905052ebe1d
20 20
21 */ 21 */
22 22
23 #if ! defined (pytave_oct_py_object_h) 23 #if ! defined (pytave_oct_py_object_h)
24 #define pytave_oct_py_object_h 24 #define pytave_oct_py_object_h
25
26 #include <Python.h>
25 27
26 namespace pytave 28 namespace pytave
27 { 29 {
28 30
29 class python_object 31 class python_object
100 }; 102 };
101 103
102 } 104 }
103 105
104 #endif 106 #endif
105