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