aboutsummaryrefslogtreecommitdiff
path: root/src/functiontostring.h
blob: 08baadd02598f983f8e19b41a220cc150da72f4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FUNCTION_TO_STRING_H
#define FUNCTION_TO_STRING_H

#include <stdint.h>

#include "function.h"

class FunctionToString : public Function
{
public:
	FunctionToString();
	virtual ~FunctionToString();

private:

};

#endif