MongoDB C++ Driver  legacy-1.1.2
initializer_context.h
1 /* Copyright 2012 10gen 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 
18 #include <map>
19 #include <string>
20 #include <vector>
21 
22 #include "mongo/base/disallow_copying.h"
23 
24 namespace mongo {
25 
32  MONGO_DISALLOW_COPYING(InitializerContext);
33 
34 public:
35  typedef std::vector<std::string> ArgumentVector;
36  typedef std::map<std::string, std::string> EnvironmentMap;
37 
38  InitializerContext(const ArgumentVector& args, const EnvironmentMap& env);
39 
40  const ArgumentVector& args() const {
41  return _args;
42  }
43  const EnvironmentMap& env() const {
44  return _env;
45  }
46 
47 private:
48  ArgumentVector _args;
49  EnvironmentMap _env;
50 };
51 
52 } // namespace mongo
Utility functions for parsing numbers from strings.
Definition: compare_numbers.h:20
Context of an initialization process.
Definition: initializer_context.h:31