xref: /haiku/src/kits/debugger/debug_info/SpecificImageDebugInfoLoadingState.h (revision e433b3cfc3f089f7681f6d4e81d43f950ca6a440)
1 /*
2  * Copyright 2014, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef SPECIFIC_IMAGE_DEBUG_INFO_LOADING_STATE_H
6 #define SPECIFIC_IMAGE_DEBUG_INFO_LOADING_STATE_H
7 
8 
9 #include <Referenceable.h>
10 
11 
12 class SpecificImageDebugInfoLoadingState : public BReferenceable {
13 public:
14 								SpecificImageDebugInfoLoadingState();
15 	virtual						~SpecificImageDebugInfoLoadingState();
16 
17 	virtual	bool				UserInputRequired() const = 0;
18 };
19 
20 
21 #endif // SPECIFIC_IMAGE_DEBUG_INFO_LOADING_STATE_H
22