ROSE 0.11.145.147
Rose/BasicTypes.h
1#ifndef ROSE_BasicTypes_H
2#define ROSE_BasicTypes_H
3#include <RoseFirst.h>
4
5#include <Sawyer/SharedPointer.h>
6
7// Recursively includes all basic types. These are mostly forward declarations. Try to keep other things to a bare minimum.
8// #include's for subdirectories are at the *end* of this header file.
9
10namespace Rose {
11
12class Exception;
13
14class Location;
15
16class Progress;
17using ProgressPtr = Sawyer::SharedPointer<Progress>;
18
19class SourceLocation;
20
21} // namespace
22
23// #include's for subdirectories
24#include <Rose/BinaryAnalysis/BasicTypes.h>
25
26#endif
Reference-counting intrusive smart pointer.
The ROSE library.