1/*
2 * Copyright 2014, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "DwarfFileLoadingState.h"
8
9#include "DwarfFile.h"
10
11
12DwarfFileLoadingState::DwarfFileLoadingState()
13	:
14	dwarfFile(),
15	externalInfoFileName(),
16	locatedExternalInfoPath(),
17	state(DWARF_FILE_LOADING_STATE_INITIAL)
18{
19}
20
21
22DwarfFileLoadingState::~DwarfFileLoadingState()
23{
24}
25
26
27