MongoDB C++ Driver
mongocxx-3.6.2
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
Functions
Enumerations
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
~
Typedefs
Enumerations
Related Functions
Files
File List
Examples
•
All
Classes
Namespaces
Functions
Typedefs
Enumerations
Enumerator
Friends
Pages
src
mongocxx
index_model.hpp
1
// Copyright 2017 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
#pragma once
16
17
#include <bsoncxx/document/value.hpp>
18
#include <bsoncxx/document/view_or_value.hpp>
19
#include <mongocxx/options/index.hpp>
20
21
#include <mongocxx/config/prelude.hpp>
22
23
namespace
mongocxx
{
24
MONGOCXX_INLINE_NAMESPACE_BEGIN
25
29
class
MONGOCXX_API
index_model
{
30
public
:
34
index_model
(
const
bsoncxx::document::view_or_value
& keys,
35
const
bsoncxx::document::view_or_value
& options = {});
36
37
index_model
() =
delete
;
38
42
index_model
(
index_model
&&) noexcept;
43
47
index_model
& operator=(
index_model
&&) noexcept;
48
52
index_model
(const
index_model
&);
53
54
index_model
& operator=(const
index_model
&) = delete;
55
59
~
index_model
();
60
64
bsoncxx
::document::view keys() const;
65
69
bsoncxx
::document::view options() const;
70
71
private:
72
bsoncxx
::document::value _keys;
73
bsoncxx
::document::value _options;
74
};
75
76
MONGOCXX_INLINE_NAMESPACE_END
77
}
// namespace mongocxx
78
79
#include <mongocxx/config/postlude.hpp>
mongocxx::index_model::index_model
index_model(const bsoncxx::document::view_or_value &keys, const bsoncxx::document::view_or_value &options={})
Initializes a new index_model over a mongocxx::collection.
mongocxx
Top level namespace for the MongoDB C++ driver.
Definition:
bulk_write.hpp:24
bsoncxx
Top level namespace for MongoDB C++ BSON functionality.
Definition:
element.hpp:24
bsoncxx::view_or_value< document::view, document::value >
mongocxx::index_model::index_model
index_model(index_model &&) noexcept
Move constructs an index_model.
mongocxx::index_model
Class representing an index on a MongoDB server.
Definition:
index_model.hpp:29
Generated by
1.8.18