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