~ubuntu-branches/ubuntu/trusty/cloog/trusty

« back to all changes in this revision

Viewing changes to isl/include/isl/map_type.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-12-15 18:39:17 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111215183917-uqggmujou8wna9js
Tags: 0.17.0-1
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef ISL_MAP_TYPE_H
2
2
#define ISL_MAP_TYPE_H
3
3
 
 
4
#include <isl/ctx.h>
 
5
 
4
6
#if defined(__cplusplus)
5
7
extern "C" {
6
8
#endif
7
9
 
 
10
__isl_subclass(isl_map)
8
11
struct isl_basic_map;
9
12
typedef struct isl_basic_map isl_basic_map;
 
13
__isl_subclass(isl_union_map)
10
14
struct isl_map;
11
15
typedef struct isl_map isl_map;
12
16
 
13
17
#ifndef isl_basic_set
 
18
__isl_subclass(isl_set)
14
19
struct isl_basic_set;
15
20
typedef struct isl_basic_set isl_basic_set;
16
21
#endif
17
22
#ifndef isl_set
 
23
__isl_subclass(isl_union_set)
18
24
struct isl_set;
19
25
typedef struct isl_set isl_set;
20
26
#endif