]> Dogcows Code - chaz/openbox/blob - src/python_client.hh
code reorganize
[chaz/openbox] / src / python_client.hh
1 // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2 #ifndef __pythonclient_hh
3 #define __pythonclient_hh
4
5 /*! @file python_client.hh
6 @brief Python stuff
7 */
8
9 #include "python.hh"
10 #include "client.hh"
11
12 namespace ob {
13
14 extern "C" {
15
16 typedef struct {
17 PyObject_HEAD
18 Window window;
19 OBClient *client;
20 } PyClientObject;
21
22 extern PyTypeObject PyClient_Type;
23
24 PyObject *get_client_dict(PyObject* self, PyObject* args);
25
26 }
27 }
28
29 #endif // __pythonclient_hh
This page took 0.035144 seconds and 4 git commands to generate.