We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Instead of hard to read list of include like the depicted below, consider organizing the includes like this:
// Qt includes #include <QPushButton> ... // Modules includes ..." // ITK includes ... // VTK includes ... // STD includes #include <ostream>
For example:
Unmaintainable list of includes:
#include "qSlicerCLIModule.h" #include "qSlicerApplication.h" #include <itkeigen/Eigen/Core> #include <QFileDialog> #include <qmainwindow.h> #include <qSlicerModuleSelectorToolBar.h> #include <qmenu.h> #include <ctkMessageBox.h> #include <qtablewidget.h> #include <qDebug> #include <QHeaderView.h> #include <QStatusBar.h> #include <QDockWidget> #include <qpushbutton.h> #include <QJsonObject> #include <ctkCollapsibleButton.h> #include"vtkMRMLLabelMapVolumeNode.h" #include <vtkImageThreshold.h> #include <QTimer> #include<stdio.h> #include <vtkMultiObjectMassProperties.h> #include <vtkDataArray.h> #include <vtkFieldData.h> #include <ostream> #include <vtkOrientedImageData.h> #include <PythonQt.h> #include <QList> #include <vtkImageCast.h> #include <vtkITKIslandMath.h> #include <vtkOrientedImageData.h>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of hard to read list of include like the depicted below, consider organizing the includes like this:
For example:
Unmaintainable list of includes:
The text was updated successfully, but these errors were encountered: