move lttv to root
[lttv.git] / lttv / modules / gui / detailedevents / lttv_plugin_evd.h
diff --git a/lttv/modules/gui/detailedevents/lttv_plugin_evd.h b/lttv/modules/gui/detailedevents/lttv_plugin_evd.h
new file mode 100644 (file)
index 0000000..fe9eb10
--- /dev/null
@@ -0,0 +1,63 @@
+/* This file is part of the Linux Trace Toolkit viewer
+ * Copyright (C) 2006 Mathieu Desnoyers
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License Version 2 as
+ * published by the Free Software Foundation;
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
+ * MA 02111-1307, USA.
+ */
+
+#ifndef LTTV_PLUGIN_EVD_H
+#define LTTV_PLUGIN_EVD_H
+
+#include <lttvwindow/lttv_plugin.h>
+#include <lttvwindow/mainwindow-private.h>
+#include "events.h"
+
+/*
+ * Type macros.
+ */
+
+#define LTTV_TYPE_PLUGIN_EVD             (lttv_plugin_evd_get_type ())
+#define LTTV_PLUGIN_EVD(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TYPE_PLUGIN_EVD, LttvPluginEVD))
+#define LTTV_PLUGIN_EVD_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), LTTV_TYPE_PLUGIN_EVD, LttvPluginEVDClass))
+#define LTTV_IS_PLUGIN_EVD(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TYPE_PLUGIN_EVD))
+#define LTTV_IS_PLUGIN_EVD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), LTTV_TYPE_PLUGIN_EVD))
+#define LTTV_PLUGIN_EVD_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), LTTV_TYPE_PLUGIN_EVD, LttvPluginEVDClass))
+
+typedef struct _LttvPluginEVD LttvPluginEVD;
+typedef struct _LttvPluginEVDClass LttvPluginEVDClass;
+
+struct _LttvPluginEVD {
+  LttvPlugin parent;
+
+  /* instance members */
+  EventViewerData *evd;
+
+  /* private */
+};
+
+struct _LttvPluginEVDClass {
+  LttvPluginClass parent;
+
+  /* class members */
+};
+
+/* used by LTTV_PLUGIN_TAB_TYPE */
+GType lttv_plugin_evd_get_type (void);
+
+/*
+ * Method definitions.
+ */
+
+
+#endif
This page took 0.026608 seconds and 4 git commands to generate.