summaryrefslogtreecommitdiff
path: root/src/mongo/shell/shell_utils_extended.h
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2012-04-05 20:03:03 -0700
committerAaron <aaron@10gen.com>2012-04-10 20:21:47 -0700
commit4ea1ee39c88c15f0bfdc325710fd64bafa9b87c8 (patch)
tree8a6a63785ede0cbf98c052b8b264422c0a2c332b /src/mongo/shell/shell_utils_extended.h
parentaa50a6ce7a0497159ac91e9833f06e4729ec311c (diff)
downloadmongo-4ea1ee39c88c15f0bfdc325710fd64bafa9b87c8.tar.gz
Move remaining 'unsafe' shell utils into shell_utils_extended.
Diffstat (limited to 'src/mongo/shell/shell_utils_extended.h')
-rw-r--r--src/mongo/shell/shell_utils_extended.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/mongo/shell/shell_utils_extended.h b/src/mongo/shell/shell_utils_extended.h
new file mode 100644
index 00000000000..ba1211ebaf9
--- /dev/null
+++ b/src/mongo/shell/shell_utils_extended.h
@@ -0,0 +1,28 @@
+// mongo/shell/shell_utils_extended.h
+/*
+ * Copyright 2010 10gen Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#pragma once
+
+namespace mongo {
+
+ class Scope;
+
+ namespace shellUtils {
+ void installShellUtilsExtended( Scope& scope );
+ }
+}