41 lines
707 B
C
41 lines
707 B
C
|
|
/*
|
||
|
|
//paragraph [1] Title: [{\Large \bf \begin{center}] [\end{center}}]
|
||
|
|
//paragraph [10] Footnote: [{\footnote{] [}}]
|
||
|
|
//[TOC] [\tableofcontents]
|
||
|
|
|
||
|
|
[1] Header of the pin\_nodes Operator
|
||
|
|
|
||
|
|
[TOC]
|
||
|
|
|
||
|
|
0 Overview
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef _BTREE2_OP_PIN_NODES_H
|
||
|
|
#define _BTREE2_OP_PIN_NODES_H
|
||
|
|
|
||
|
|
#include "Operator.h"
|
||
|
|
#include "NestedList.h"
|
||
|
|
#include "AlgebraTypes.h"
|
||
|
|
|
||
|
|
#include "BTree2.h"
|
||
|
|
|
||
|
|
namespace BTree2Algebra {
|
||
|
|
namespace Operators {
|
||
|
|
|
||
|
|
class pin_nodes{
|
||
|
|
public:
|
||
|
|
|
||
|
|
static ListExpr TypeMapping(ListExpr args);
|
||
|
|
|
||
|
|
static int ValueMapping(Word* args, Word& result, int message,
|
||
|
|
Word& local, Supplier s);
|
||
|
|
|
||
|
|
static Operator def;
|
||
|
|
};
|
||
|
|
|
||
|
|
} // end namespace Operators
|
||
|
|
} // end namespace BTree2Algebra
|
||
|
|
|
||
|
|
#endif
|