Add ReturnValueID base type.
This commit is contained in:
@@ -124,9 +124,10 @@ Application Debugger :
|
|||||||
|
|
||||||
# ids
|
# ids
|
||||||
FunctionID.cpp
|
FunctionID.cpp
|
||||||
|
FunctionParameterID.cpp
|
||||||
LocalVariableID.cpp
|
LocalVariableID.cpp
|
||||||
ObjectID.cpp
|
ObjectID.cpp
|
||||||
FunctionParameterID.cpp
|
ReturnValueID.cpp
|
||||||
|
|
||||||
# jobs
|
# jobs
|
||||||
GetCPUStateJob.cpp
|
GetCPUStateJob.cpp
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2012, Rene Gollent, [email protected].
|
||||||
|
* Distributed under the terms of the MIT License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include "ReturnValueID.h"
|
||||||
|
|
||||||
|
|
||||||
|
ReturnValueID::~ReturnValueID()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
@@ -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
|
||||||
Reference in New Issue
Block a user