diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-03-25 19:17:26 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-03-26 10:17:08 -0400 |
commit | 06b58e9c7c349ce81504cf6ce2823082205ab0f7 (patch) | |
tree | e56a7389a28887ad11fcd80bcdf7e21cccd033ab /src/mongo/client/gridfs.h | |
parent | 05533d52a29589f54ec9ee582e770a5fdda552a5 (diff) | |
download | mongo-06b58e9c7c349ce81504cf6ce2823082205ab0f7.tar.gz |
SERVER-17736 Remove obsolete C++ driver symbol export miscellanea
Diffstat (limited to 'src/mongo/client/gridfs.h')
-rw-r--r-- | src/mongo/client/gridfs.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/client/gridfs.h b/src/mongo/client/gridfs.h index 952b14b3cc7..8646264e764 100644 --- a/src/mongo/client/gridfs.h +++ b/src/mongo/client/gridfs.h @@ -32,7 +32,6 @@ #include "mongo/bson/bsonelement.h" #include "mongo/bson/bsonobj.h" #include "mongo/client/dbclientinterface.h" -#include "mongo/client/export_macros.h" namespace mongo { @@ -41,7 +40,7 @@ namespace mongo { class GridFS; class GridFile; - class MONGO_CLIENT_API GridFSChunk { + class GridFSChunk { public: GridFSChunk( BSONObj data ); GridFSChunk( BSONObj fileId , int chunkNumber , const char * data , int len ); @@ -66,7 +65,7 @@ namespace mongo { GridFS is for storing large file-style objects in MongoDB. @see http://dochub.mongodb.org/core/gridfsspec */ - class MONGO_CLIENT_API GridFS { + class GridFS { public: /** * @param client - db connection @@ -149,7 +148,7 @@ namespace mongo { /** wrapper for a file stored in the Mongo database */ - class MONGO_CLIENT_API GridFile { + class GridFile { public: /** * @return whether or not this file exists |