]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/debugserver/source/DNBRuntimeAction.h
Vendor import of lldb trunk r290819:
[FreeBSD/FreeBSD.git] / tools / debugserver / source / DNBRuntimeAction.h
1 //===-- DNBRuntimeAction.h --------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  Created by Greg Clayton on 10/8/07.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef __DNBRuntimeAction_h__
15 #define __DNBRuntimeAction_h__
16
17 class DNBRuntimeAction {
18   virtual void Initialize(nub_process_t pid) = 0;
19   virtual void ProcessStateChanged(nub_state_t state) = 0;
20   virtual void SharedLibraryStateChanged(DNBExecutableImageInfo *image_infos,
21                                          nub_size_t num_image_infos) = 0;
22 };
23
24 #endif // #ifndef __DNBRuntimeAction_h__