ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
rangemap.h File Reference
#include <inttypes.h>
#include <cassert>
#include <cmath>
#include <cstdlib>
#include <iostream>
#include <map>
#include <sstream>
#include <string>
#include <vector>
Include dependency graph for rangemap.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Range< T >
 A contiguous range of values. More...
 
class  RangeMapVoid< R >
 Value type for a RangeMap with no useful data attached to the ranges. More...
 
class  RangeMapNumeric< R, T >
 Scalar value type for a RangeMap. More...
 
class  RangeMapValue< R, T >
 Scalar value type for a RangeMap. More...
 
class  RangeMap< R, T >
 A container of ranges, somewhat like a set. More...
 
struct  RangeMap< R, T >::RangeCompare
 The value attached to each range in this RangeMap. More...
 

Macros

#define __STDC_FORMAT_MACROS
 
#define RANGEMAP_CHECK(EXPR)
 

Macro Definition Documentation

#define __STDC_FORMAT_MACROS

Definition at line 15 of file rangemap.h.

#define RANGEMAP_CHECK (   EXPR)
Value:
if (!(EXPR)) { \
std::cerr <<"RangeMap::check() failed at r1=" <<r1 <<" r2=" <<r2 <<": " #EXPR "\n"; \
std::cerr <<"Entire range map at point of failure:\n"; \
print(std::cerr, " "); \
assert(EXPR); \
}

Referenced by RangeMap< Extent >::check().