-
Notifications
You must be signed in to change notification settings - Fork 27
Coding Styles
Elias Alberts edited this page Aug 31, 2021
·
5 revisions
Includes should be grouped into categories and placed in this order:
- implementation header or interface
- group 1
- group 2
For example:
#include "heartbeat_handler.h"
#include <QDebug>
#include <QJsonArray>
#include "common_tmi.h"
#include "mavlink_protocol_helpers.h"
#include "mode_helper_factory.h"