VAPOR3 3.9.4
DCUtils.h
Go to the documentation of this file.
1//************************************************************************
2// *
3// Copyright (C) 2018 *
4// University Corporation for Atmospheric Research *
5// All Rights Reserved *
6// *
7//************************************************************************/
8//
9// File: DCUtils.h
10//
11// Author: John Clyne
12// National Center for Atmospheric Research
13// PO 3000, Boulder, Colorado
14//
15// Date: February 2018
16//
17// Description: Defines the DC free functions.
18//
19// These functions operate on instances of the DC class.
20//
21#ifndef DCUTILS_H
22#define DCUTILS_H
23
24#include <vector>
25#include <string>
26#include <map>
27#include <vapor/DC.h>
28
29namespace VAPoR {
30
31class NetCDFCollection;
32
33namespace DCUtils {
34
35int CopyAtt(const NetCDFCollection &ncdfc, string varname, string attname, DC::BaseVar &var);
36
37int CopyAtt(const NetCDFCollection &ncdfc, string varname, DC::BaseVar &var);
38
39}; // namespace DCUtils
40}; // namespace VAPoR
41
42#endif
Base class for storing variable metadata.
Definition: DC.h:754
Wrapper for a collection of netCDF files.
int CopyAtt(const NetCDFCollection &ncdfc, string varname, string attname, DC::BaseVar &var)