~ubuntu-branches/ubuntu/trusty/picviz/trusty

« back to all changes in this revision

Viewing changes to src/libpicviz/include/image.h

  • Committer: Bazaar Package Importer
  • Author(s): Pierre Chifflier
  • Date: 2009-03-30 10:42:08 UTC
  • Revision ID: james.westby@ubuntu.com-20090330104208-j095obwkp574t1lm
Tags: upstream-0.5
ImportĀ upstreamĀ versionĀ 0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Picviz - Parallel coordinates ploter
 
3
 * Copyright (C) 2008 Sebastien Tricaud <toady@gscore.org>
 
4
 *
 
5
 * This program is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation version 3.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * $Id: image.h 261 2008-10-24 12:15:11Z toady $
 
18
 */
 
19
 
 
20
#ifndef _IMAGE_H_
 
21
#define _IMAGE_H_
 
22
 
 
23
#include "pcimage.h"
 
24
 
 
25
#ifdef __cplusplus
 
26
 extern "C" {
 
27
#endif
 
28
 
 
29
PicvizImage *picviz_image_new(void);
 
30
void picviz_image_destroy(PicvizImage *image);
 
31
void picviz_init(void);
 
32
void picviz_image_axis_append(PicvizImage *i, PicvizAxis *axis);
 
33
void picviz_image_line_append(PicvizImage *image, struct line_t *line);
 
34
void picviz_image_debug_printall(PicvizImage *i);
 
35
 
 
36
#ifdef __cplusplus
 
37
 }
 
38
#endif
 
39
 
 
40
#endif /* _IMAGE_H_ */