xref: /haiku/headers/private/debugger/ids/ReturnValueID.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2012, Rene Gollent, rene@gollent.com.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef RETURN_VALUE_ID_H
6 #define RETURN_VALUE_ID_H
7 
8 
9 #include "ObjectID.h"
10 
11 
12 class ReturnValueID : public ObjectID {
13 public:
14 	virtual						~ReturnValueID();
15 };
16 
17 
18 #endif	// RETURN_VALUE_ID_H
19