xref: /haiku/src/kits/debugger/debug_info/DwarfImageDebugInfoLoadingState.cpp (revision 2cad94c1c30b6223ad8c08710b26e071d32e9979)
1 /*
2  * Copyright 2014, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "DwarfImageDebugInfoLoadingState.h"
8 
9 
10 DwarfImageDebugInfoLoadingState::DwarfImageDebugInfoLoadingState()
11 	:
12 	SpecificImageDebugInfoLoadingState(),
13 	fState()
14 {
15 }
16 
17 
18 DwarfImageDebugInfoLoadingState::~DwarfImageDebugInfoLoadingState()
19 {
20 }
21 
22 
23 bool
24 DwarfImageDebugInfoLoadingState::UserInputRequired() const
25 {
26 	return fState.state == DWARF_FILE_LOADING_STATE_USER_INPUT_NEEDED;
27 }
28