ROSE  0.11.145.0
BinaryAnalysis/Concolic/Callback/BasicTypes.h
1 #ifndef ROSE_BinaryAnalysis_Concolic_Callback_BasicTypes_H
2 #define ROSE_BinaryAnalysis_Concolic_Callback_BasicTypes_H
3 #include <featureTests.h>
4 #ifdef ROSE_ENABLE_CONCOLIC_TESTING
5 
6 namespace Rose {
7 namespace BinaryAnalysis {
8 namespace Concolic {
9 namespace Callback {
10 
11 class MemoryExit;
12 using MemoryExitPtr = Sawyer::SharedPointer<MemoryExit>;
14 class MemoryInput;
15 using MemoryInputPtr = Sawyer::SharedPointer<MemoryInput>;
17 class MemoryTime;
18 using MemoryTimePtr = Sawyer::SharedPointer<MemoryTime>;
20 } // namespace
21 } // namespace
22 } // namespace
23 } // namespace
24 
25 #endif
26 #endif
Main namespace for the ROSE library.
Reference-counting intrusive smart pointer.
Definition: SharedPointer.h:68