19 lines
335 B
C
19 lines
335 B
C
|
/*
|
||
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef FUNCTION_PARAMETER_ID_H
|
||
|
#define FUNCTION_PARAMETER_ID_H
|
||
|
|
||
|
|
||
|
#include "ObjectID.h"
|
||
|
|
||
|
|
||
|
class FunctionParameterID : public ObjectID {
|
||
|
public:
|
||
|
virtual ~FunctionParameterID();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // FUNCTION_PARAMETER_ID_H
|