MongoDB C++ Driver legacy-1.1.2
Loading...
Searching...
No Matches
interface.h
1/* Copyright 2014 MongoDB Inc.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#pragma once
17
19#include "mongo/geo/constants.h"
23#include "mongo/geo/geometry.h"
25#include "mongo/geo/geoobj.h"
30#include "mongo/geo/namespaces.h"
31#include "mongo/geo/parser.h"
32#include "mongo/geo/point.h"
33#include "mongo/geo/polygon.h"
34#include "mongo/geo/queryutils.h"
35
36// NOTE: parser-impl.h MUST be included after parser.h
37// and all geometry type files. This is a workaround to a circular dependency
38// issue between parser.h and geometrycollection.h. See
39// file comments in parser-impl.h for details.