bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
LocationType.h
1// Copyright (c) 2012 OPeNDAP, Inc.
2// Authors: Nathan Potter <ndp@opendap.org>
3// James Gallagher <jgallagher@opendap.org>
4//
5// This library is free software; you can redistribute it and/or
6// modify it under the terms of the GNU Lesser General Public
7// License as published by the Free Software Foundation; either
8// version 2.1 of the License, or (at your option) any later version.
9//
10// This library is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13// Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public
16// License along with this library; if not, write to the Free Software
17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18//
19// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
20
21#ifndef LOCATIONTYPE_H_
22#define LOCATIONTYPE_H_
23
24enum locationType {
25 node, edge, face
26};
27
28#endif /* LOCATIONTYPE_H_ */