1/*
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 *
6 * Copyright 1997 - July 2008 CWI, August 2008 - 2019 MonetDB B.V.
7 */
8
9/*
10 * @+ Implementation code
11 */
12#ifndef _FACTORIES_H
13#define _FACTORIES_H
14
15#include "mal.h"
16#include "mal_interpreter.h"
17#include "mal_namespace.h"
18
19mal_export str FCTgetPlants(bat *ret, bat *ret2);
20mal_export str FCTgetCaller(int *ret);
21mal_export str FCTgetOwners(bat *ret);
22mal_export str FCTgetArrival(bat *ret);
23mal_export str FCTgetDeparture(bat *ret);
24mal_export str FCTshutdown(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci);
25#endif /* _FACTORIES_H */
26