0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
mongodb/util/mongoutils
2011-01-04 00:40:41 -05:00
..
checksum.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
hash.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
html.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
mongoutils.vcxproj update db_10.sln 2010-11-29 11:07:13 -05:00
mongoutils.vcxproj.filters
README much cleaner error messages on out of disk space. we shouldnt print a stack trace on disk full (IMO) 2010-10-24 11:47:00 -04:00
str.h ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00
test.cpp ran astyle SERVER-2304 2011-01-04 00:40:41 -05:00

    mongoutils namespace requirements:

    (1) code is not database specific, rather, true utilities
    (2) are cross platform
    (3) may require boost headers, but not libs
    (4) are clean and easy to use in any c++ project without pulling in lots of other stuff.
        specifically, does not use anything in the mongo namespace!
    (5) apache license
    (6) must be documented!  if you aren't going to bother (but don't do that), stick it in util.
    (7) ideally header only (in the spirit of #3)

    So basically, easy to use, general purpose stuff, with no arduous dependencies to drop into 
    any new project.