diff options
author | Ted Gould <ted@gould.cx> | 2010-01-19 10:42:11 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-01-19 10:42:11 -0600 |
commit | f8d65da606cc460ebac5f273b754e8885dc91433 (patch) | |
tree | 4857945d91cb4d90600148ccc9a79522fe02f53b /src/application-service-lru-file.h | |
parent | f0104e11357b5804aea2ecead13f99231b671a75 (diff) | |
download | libayatana-appindicator-f8d65da606cc460ebac5f273b754e8885dc91433.tar.gz libayatana-appindicator-f8d65da606cc460ebac5f273b754e8885dc91433.tar.bz2 libayatana-appindicator-f8d65da606cc460ebac5f273b754e8885dc91433.zip |
Adding an object to start tracking the lru of the app indicators
Diffstat (limited to 'src/application-service-lru-file.h')
-rw-r--r-- | src/application-service-lru-file.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/application-service-lru-file.h b/src/application-service-lru-file.h new file mode 100644 index 0000000..6577278 --- /dev/null +++ b/src/application-service-lru-file.h @@ -0,0 +1,33 @@ +#ifndef __APP_LRU_FILE_H__ +#define __APP_LRU_FILE_H__ + +#include <glib.h> +#include <glib-object.h> + +G_BEGIN_DECLS + +#define APP_LRU_FILE_TYPE (app_lru_file_get_type ()) +#define APP_LRU_FILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), APP_LRU_FILE_TYPE, AppLruFile)) +#define APP_LRU_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), APP_LRU_FILE_TYPE, AppLruFileClass)) +#define IS_APP_LRU_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), APP_LRU_FILE_TYPE)) +#define IS_APP_LRU_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), APP_LRU_FILE_TYPE)) +#define APP_LRU_FILE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), APP_LRU_FILE_TYPE, AppLruFileClass)) + +typedef struct _AppLruFile AppLruFile; +typedef struct _AppLruFileClass AppLruFileClass; + +struct _AppLruFileClass { + GObjectClass parent_class; + +}; + +struct _AppLruFile { + GObject parent; + +}; + +GType app_lru_file_get_type (void); + +G_END_DECLS + +#endif |