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
10DwarfImageDebugInfoLoadingState::DwarfImageDebugInfoLoadingState()
11	:
12	SpecificImageDebugInfoLoadingState(),
13	fState()
14{
15}
16
17
18DwarfImageDebugInfoLoadingState::~DwarfImageDebugInfoLoadingState()
19{
20}
21
22
23bool
24DwarfImageDebugInfoLoadingState::UserInputRequired() const
25{
26	return fState.state == DWARF_FILE_LOADING_STATE_USER_INPUT_NEEDED;
27}
28