xref: /haiku/src/kits/debugger/debug_info/DwarfImageDebugInfoLoadingState.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2014, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef DWARF_IMAGE_DEBUG_INFO_LOADING_STATE_H
6 #define DWARF_IMAGE_DEBUG_INFO_LOADING_STATE_H
7 
8 
9 #include "DwarfFileLoadingState.h"
10 #include "SpecificImageDebugInfoLoadingState.h"
11 
12 
13 class DwarfImageDebugInfoLoadingState
14 	: public SpecificImageDebugInfoLoadingState {
15 public:
16 								DwarfImageDebugInfoLoadingState();
17 	virtual						~DwarfImageDebugInfoLoadingState();
18 
19 	virtual	bool				UserInputRequired() const;
20 
21 			DwarfFileLoadingState& GetFileState()
22 									{ return fState; }
23 
24 private:
25 			DwarfFileLoadingState fState;
26 };
27 
28 
29 #endif // DWARF_IMAGE_DEBUG_INFO_LOADING_STATE_H
30 
31