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
13class DwarfImageDebugInfoLoadingState
14	: public SpecificImageDebugInfoLoadingState {
15public:
16								DwarfImageDebugInfoLoadingState();
17	virtual						~DwarfImageDebugInfoLoadingState();
18
19	virtual	bool				UserInputRequired() const;
20
21			DwarfFileLoadingState& GetFileState()
22									{ return fState; }
23
24private:
25			DwarfFileLoadingState fState;
26};
27
28
29#endif // DWARF_IMAGE_DEBUG_INFO_LOADING_STATE_H
30
31