1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef __H_BOX__
#define __H_BOX__
#include "defs.h"
#include "baseobject.h"
/** @file
* An SBox is a boxed type.
*/
BEGIN_DECLS
/** @brief
* A reference counted box sitting on top of an SObject
*/
typedef struct _SBox SBox;
typedef struct _SBoxClass SBoxClass;
typedef struct _SBoxPrivate SBoxPrivate;
struct _SBox {
SObject parent;
SBoxPrivate * priv;
}
struct _SBoxClass {
SObjectClass parent_class;
}
END_DECLS
#endif
|