We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In general, we follow MongoDB style guides, which in turns tries to follow Google C++ Style Guide.
The most important rules are:
Use "double quotes" for Robomongo code, <angle brackets> for 3rd party or library headers, including MongoDB files:
"double quotes"
<angle brackets>
#include <QStringList> #include <boost/shared_ptr.hpp> #include <mongo/client/dbclient.h> #include "robomongo/core/Core.h" #include "robomongo/core/MongoElement.h"
All of a project's header files should be listed as descendants of the project's src/ source directory without use of directory shortcuts (. and ..).
src/
.
..
Correct:
#include "robomongo/core/MongoElement.h"
Wrong:
#include "core/MongoElement.h" #include "../core/MongoElement.h" #include "MongoElement.h"
Follow this order:
#pragma once