mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-27 07:30:33 +08:00
35 lines
725 B
C
35 lines
725 B
C
/*********************************************************************
|
|
* Copyright 2010, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
*********************************************************************/
|
|
|
|
#ifndef RPC_INCLUDES_H
|
|
#define RPC_INCLUDES_H
|
|
|
|
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "ncbytes.h"
|
|
#include "nclist.h"
|
|
#include "nclog.h"
|
|
#include "nc_path.h"
|
|
|
|
#include "netcdf.h"
|
|
#include "nc.h"
|
|
#include "ncdispatch.h"
|
|
#include "nc4internal.h"
|
|
|
|
#include "ast.h"
|
|
#include "protorpc.h"
|
|
|
|
#include "rpc.h"
|
|
#include "rpcdispatch.h"
|
|
#include "rpccurl.h"
|
|
#include "rpcdebug.h"
|
|
#include "rpcutil.h"
|
|
|
|
#endif /*RPC_INCLUDES_H*/
|