1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
// GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/getdp/getdp/issues
#ifndef _POS_PRINT_H_
#define _POS_PRINT_H_
#include "ProData.h"
#define ARG struct PostQuantity *NCPQ_P, \
struct PostQuantity *CPQ_P, \
int Order, \
struct DefineQuantity *DefineQuantity_P0, \
struct QuantityStorage *QuantityStorage_P0, \
struct PostSubOperation *PostSubOperation_P
void Pos_PrintOnRegion (ARG);
void Pos_PrintOnElementsOf (ARG);
void Pos_PrintOnSection (ARG);
void Pos_PrintOnGrid (ARG);
void Pos_PrintWithArgument (ARG);
#undef ARG
void Pos_PrintGroup(struct PostSubOperation *PostSubOperation_P);
void Pos_PrintExpression(struct PostSubOperation *PostSubOperation_P);
#endif
|