diff options
author | Aaron <aaron@10gen.com> | 2012-04-05 20:03:03 -0700 |
---|---|---|
committer | Aaron <aaron@10gen.com> | 2012-04-10 20:21:47 -0700 |
commit | 4ea1ee39c88c15f0bfdc325710fd64bafa9b87c8 (patch) | |
tree | 8a6a63785ede0cbf98c052b8b264422c0a2c332b /src/mongo/shell/shell_utils_extended.h | |
parent | aa50a6ce7a0497159ac91e9833f06e4729ec311c (diff) | |
download | mongo-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.h | 28 |
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 ); + } +} |