comparison src/parallel_execution/RedBlackTree.cbc @ 468:ac244346c85d

Change used interface syntax from #include to #interface
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Mon, 25 Dec 2017 18:10:56 +0900
parents b3a2246e3218
children ed494f4004c9
comparison
equal deleted inserted replaced
467:4ec61e201c19 468:ac244346c85d
1 #include <stdio.h> 1 #include <stdio.h>
2 2
3 #include "../context.h" 3 #include "../context.h"
4 #include "Tree.h" 4 #interface "Tree.h"
5 #include "Stack.h" 5 #interface "Stack.h"
6 6
7 extern enum Relational compare(struct Node* node1, struct Node* node2); 7 extern enum Relational compare(struct Node* node1, struct Node* node2);
8 8
9 Tree* createRedBlackTree(struct Context* context) { 9 Tree* createRedBlackTree(struct Context* context) {
10 struct Tree* tree = new Tree(); 10 struct Tree* tree = new Tree();