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 { 19 virtual void Initialize (nub_process_t pid) = 0; 20 virtual void ProcessStateChanged (nub_state_t state) = 0; 21 virtual void SharedLibraryStateChanged (DNBExecutableImageInfo *image_infos, nub_size_t num_image_infos) = 0; 22 }; 23 24 25 #endif // #ifndef __DNBRuntimeAction_h__ 26