|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21571/root/usr/include/libbonobo-2.0/bonobo/ |
Upload File : |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/**
* bonobo-storage-memory.h: Memory based Bonobo::Storage implementation
*
* Author:
* ÉRDI Gergõ <cactus@cactus.rulez.org>
*
* Copyright 2001 Gergõ Érdi
*/
#ifndef _BONOBO_STORAGE_MEM_H_
#define _BONOBO_STORAGE_MEM_H_
#include <bonobo/bonobo-storage.h>
G_BEGIN_DECLS
#define BONOBO_TYPE_STORAGE_MEM (bonobo_storage_mem_get_type ())
#define BONOBO_STORAGE_MEM_TYPE BONOBO_TYPE_STORAGE_MEM /* deprecated, you should use BONOBO_TYPE_STORAGE_MEM */
#define BONOBO_STORAGE_MEM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), BONOBO_TYPE_STORAGE_MEM, BonoboStorageMem))
#define BONOBO_STORAGE_MEM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), BONOBO_TYPE_STORAGE_MEM, BonoboStorageMemClass))
#define BONOBO_IS_STORAGE_MEM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), BONOBO_TYPE_STORAGE_MEM))
#define BONOBO_IS_STORAGE_MEM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), BONOBO_TYPE_STORAGE_MEM))
typedef struct _BonoboStorageMemPriv BonoboStorageMemPriv;
typedef struct _BonoboStorageMem BonoboStorageMem;
struct _BonoboStorageMem {
BonoboObject parent;
BonoboStorageMemPriv *priv;
};
typedef struct {
BonoboObjectClass parent_class;
POA_Bonobo_Storage__epv epv;
} BonoboStorageMemClass;
GType bonobo_storage_mem_get_type (void) G_GNUC_CONST;
BonoboObject *bonobo_storage_mem_create (void);
G_END_DECLS
#endif /* _BONOBO_STORAGE_MEM_H_ */