xref: /haiku/src/kits/debugger/dwarf/DwarfFileLoadingState.cpp (revision fce4895d1884da5ae6fb299d23c735c598e690b1)
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 
DwarfFileLoadingState()12 DwarfFileLoadingState::DwarfFileLoadingState()
13 	:
14 	dwarfFile(),
15 	externalInfoFileName(),
16 	locatedExternalInfoPath(),
17 	state(DWARF_FILE_LOADING_STATE_INITIAL)
18 {
19 }
20 
21 
~DwarfFileLoadingState()22 DwarfFileLoadingState::~DwarfFileLoadingState()
23 {
24 }
25 
26 
27