p4est
2.8.6
p4est is a software library for parallel adaptive mesh refinement.
src
p4est_empty.h
1
/*
2
This file is part of p4est.
3
p4est is a C library to manage a collection (a forest) of multiple
4
connected adaptive quadtrees or octrees in parallel.
5
6
Copyright (C) 2010 The University of Texas System
7
Additional copyright (C) 2011 individual authors
8
Written by Carsten Burstedde, Lucas C. Wilcox, and Tobin Isaac
9
10
p4est is free software; you can redistribute it and/or modify
11
it under the terms of the GNU General Public License as published by
12
the Free Software Foundation; either version 2 of the License, or
13
(at your option) any later version.
14
15
p4est is distributed in the hope that it will be useful,
16
but WITHOUT ANY WARRANTY; without even the implied warranty of
17
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
GNU General Public License for more details.
19
20
You should have received a copy of the GNU General Public License
21
along with p4est; if not, write to the Free Software Foundation, Inc.,
22
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23
*/
24
25
/******************************************************************************
26
* The files: *
27
* *
28
* p4est_empty.h p4est_empty.c *
29
* p8est_empty.h p8est_empty.c p4est_to_p8est_empty.h *
30
* p6est_empty.h p6est_empty.c *
31
* *
32
* are intended to allow users to add functionality to the p4est library for *
33
* specific applications. *
34
* *
35
* A possible use case would be for an application to distribute its version *
36
* of these files and copy them into the p4est source directory prior to *
37
* configuration and build of p4est. By doing this, applications can use *
38
* distributed tarballs of p4est without having to re-bootstrap p4est. *
39
******************************************************************************/
40
41
#ifndef P4EST_EMPTY_H
42
#define P4EST_EMPTY_H
43
44
#include <
p4est_base.h
>
45
46
SC_EXTERN_C_BEGIN;
47
48
/* This is a dummy .h file that the user can replace as needed */
49
51
void
p4est_empty_noop (
void
);
52
53
SC_EXTERN_C_END;
54
55
#endif
/* !P4EST_EMPTY_H */
p4est_base.h
General support types and functions.