diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2007-12-04 19:23:34 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2007-12-04 19:23:34 +0000 |
commit | 1d0fdedad0c98864354edbeeb70b0de6cba7e71e (patch) | |
tree | 85c870e4c98e46b8b670b31cb10452051a31f2b9 /src/summary.h | |
parent | b9dfdcaae0dee523b667950e7913152f4ace9d42 (diff) |
Add a simple pie-chart.
Diffstat (limited to 'src/summary.h')
-rw-r--r-- | src/summary.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/summary.h b/src/summary.h new file mode 100644 index 0000000..4dd25f8 --- /dev/null +++ b/src/summary.h @@ -0,0 +1,32 @@ +/* + This file is part of odin, a memory profiler with fragmentation analysis. + + Copyright (C) 2007 Chris Wilson <chris@chris-wilson.co.uk> + + odin is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 3 of the + License, or (at your option) any later version. + + odin 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 odin. If not, see <http://www.gnu.org/licenses/>/ + + The GNU General Public License is contained in the file COPYING. +*/ + +#ifndef SUMMARY_H +#define SUMMARY_H + +#include <gtk/gtk.h> + +#include "allocators.h" + +GtkWidget * +summary_chart_new (AllocatorsStore *store); + +#endif /* SUMMARY_H */ |