1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-02 05:14:48 +00:00

improve some details

This commit is contained in:
vegarden
2013-08-09 12:56:37 +08:00
parent e4a5b18e6c
commit e2e594a8a2
10 changed files with 291 additions and 327 deletions

View File

@@ -15,16 +15,14 @@ typedef struct _TestObject TestObject;
typedef struct _TestObjectClass TestObjectClass;
struct _TestObject {
GObject parent;
gint a;
gint64 b;
guint c;
gchar * str;
gboolean boo;
GObject parent;
int len;
gchar *str;
gboolean equal;
};
struct _TestObjectClass {
GObjectClass parent_class;
GObjectClass parent_class;
};
#endif