Add ReturnValueID base type.

This commit is contained in:
Rene Gollent
2012-12-31 20:25:08 -05:00
parent eed38dfa96
commit 9ede3c06e8
3 changed files with 33 additions and 1 deletions
+2 -1
View File
@@ -124,9 +124,10 @@ Application Debugger :
# ids
FunctionID.cpp
FunctionParameterID.cpp
LocalVariableID.cpp
ObjectID.cpp
FunctionParameterID.cpp
ReturnValueID.cpp
# jobs
GetCPUStateJob.cpp
+13
View File
@@ -0,0 +1,13 @@
/*
* Copyright 2012, Rene Gollent, [email protected].
* Distributed under the terms of the MIT License.
*/
#include "ReturnValueID.h"
ReturnValueID::~ReturnValueID()
{
}
+18
View File
@@ -0,0 +1,18 @@
/*
* Copyright 2012, Rene Gollent, [email protected].
* Distributed under the terms of the MIT License.
*/
#ifndef RETURN_VALUE_ID_H
#define RETURN_VALUE_ID_H
#include "ObjectID.h"
class ReturnValueID : public ObjectID {
public:
virtual ~ReturnValueID();
};
#endif // RETURN_VALUE_ID_H