xref: /haiku/headers/private/debugger/ids/ReturnValueID.h (revision 8728f4797fcb3e99b6e1ec2629efbf4119c37497)
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