added netcdf_dispatch.h file

This commit is contained in:
Ed Hartnett 2019-07-05 04:50:36 -06:00
parent 57f09d6e62
commit 39ba4aae89
2 changed files with 19 additions and 3 deletions

View File

@ -6,7 +6,8 @@
# Ed Hartnett, Dennis Heimbigner, Ward Fisher
include_HEADERS = netcdf.h netcdf_meta.h netcdf_mem.h netcdf_aux.h netcdf_filter.h
include_HEADERS = netcdf.h netcdf_meta.h netcdf_mem.h netcdf_aux.h \
netcdf_filter.h netcdf_dispatch.h
if BUILD_PARALLEL
include_HEADERS += netcdf_par.h
@ -17,8 +18,8 @@ ncuri.h ncutf8.h ncdispatch.h ncdimscale.h netcdf_f.h err_macros.h \
ncbytes.h nchashmap.h ceconstraints.h rnd.h nclog.h ncconfigure.h \
nc4internal.h nctime.h nc3internal.h onstack.h ncrc.h ncauth.h \
ncoffsets.h nctestserver.h nc4dispatch.h nc3dispatch.h ncexternl.h \
ncwinpath.h ncindex.h hdf4dispatch.h hdf5internal.h \
nc_provenance.h hdf5dispatch.h ncmodel.h
ncwinpath.h ncindex.h hdf4dispatch.h hdf5internal.h nc_provenance.h \
hdf5dispatch.h ncmodel.h
if USE_DAP
noinst_HEADERS += ncdap.h

15
include/netcdf_dispatch.h Normal file
View File

@ -0,0 +1,15 @@
/* Copyright 2018-2018 University Corporation for Atmospheric
Research/Unidata. */
/**
* @file
* @internal Includes prototypes for core dispatch functionality.
*
* @author Dennis Heimbigner
*/
#ifndef NETCDF_DISPATCH_H
#define NETCDF_DISPATCH_H
#include "config.h"
#endif /* NETCDF_DISPATCH_H */