Files
secondo/Algebras/BTree2/op_reset_counters.h

41 lines
727 B
C
Raw Normal View History

2026-01-23 17:03:45 +08:00
/*
//paragraph [1] Title: [{\Large \bf \begin{center}] [\end{center}}]
//paragraph [10] Footnote: [{\footnote{] [}}]
//[TOC] [\tableofcontents]
[1] Header of the reset\_counters Operator
[TOC]
0 Overview
*/
#ifndef _BTREE2_OP_RESET_COUNTERS_H
#define _BTREE2_OP_RESET_COUNTERS_H
#include "Operator.h"
#include "NestedList.h"
#include "AlgebraTypes.h"
#include "BTree2.h"
namespace BTree2Algebra {
namespace Operators {
class reset_counters{
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