Files
secondo/Algebras/BTree2/op_set_debug.h
2026-01-23 17:03:45 +08:00

41 lines
708 B
C++

/*
//paragraph [1] Title: [{\Large \bf \begin{center}] [\end{center}}]
//paragraph [10] Footnote: [{\footnote{] [}}]
//[TOC] [\tableofcontents]
[1] Header of the treeheight Operator
[TOC]
0 Overview
*/
#ifndef _BTREE2_OP_SET_DEBUG_H
#define _BTREE2_OP_SET_DEBUG_H
#include "Operator.h"
#include "NestedList.h"
#include "AlgebraTypes.h"
#include "BTree2.h"
namespace BTree2Algebra {
namespace Operators {
class set_debug {
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