added FunctionNode
git-svn-id: svn://anubis/jtlc/trunk@21 f5bc74b8-7b62-4e90-9214-7121d538519f
This commit is contained in:
parent
3301142147
commit
b686d15705
11
nodes/FunctionNode.cc
Normal file
11
nodes/FunctionNode.cc
Normal file
@ -0,0 +1,11 @@
|
||||
|
||||
#include <iostream>
|
||||
#include "Node.h"
|
||||
#include "parser/parser.h"
|
||||
using namespace std;
|
||||
|
||||
void FunctionNode::process(FILE * out)
|
||||
{
|
||||
refptr<Node> params = m_children[2];
|
||||
refptr<Node> type = m_children[1];
|
||||
}
|
@ -52,6 +52,8 @@ class DoubleNode : public Node
|
||||
|
||||
class FunctionNode : public Node
|
||||
{
|
||||
public:
|
||||
void process(FILE * out);
|
||||
};
|
||||
|
||||
class IdentifierNode : public Node
|
||||
|
Loading…
x
Reference in New Issue
Block a user