#include <hildon-widgets/hildon-program.h>
#include <hildon-widgets/hildon-window.h>

#ifndef __APPDATA_H
#define __APPDATA_H

typedef struct _AppData AppData;

struct _AppData {
  HildonProgram *app;
  HildonWindow *main_window;
};

#endif /* __APPDATA_H */

