diff --git a/Gui/Base/QValueTooltipSlider.h b/Gui/Base/QValueTooltipSlider.h
index 3facee9475cba66a54efd7339e35fd8b88b052e0..c4a62bfe3f70505e8280c3a76eb923c1e389c736 100644
--- a/Gui/Base/QValueTooltipSlider.h
+++ b/Gui/Base/QValueTooltipSlider.h
@@ -8,6 +8,9 @@
 
 #include <QSlider>
 
+/**
+ * \brief A QSlider which shows its value as a tooltip when moved.
+ */
 class QValueTooltipSlider : public QSlider
 {
 	Q_OBJECT
diff --git a/Gui/Base/StrictDoubleValidator.h b/Gui/Base/StrictDoubleValidator.h
index 1b845ff813c34fd44499df759b59657be5c4b24d..b1803c1ba0468e59198965bec136716d4efcfcfb 100644
--- a/Gui/Base/StrictDoubleValidator.h
+++ b/Gui/Base/StrictDoubleValidator.h
@@ -8,11 +8,12 @@
 #ifndef STRICTDOUBLEVALIDATOR_H_
 #define STRICTDOUBLEVALIDATOR_H_
 
-// source code adapted from:
-// http://developer.qt.nokia.com/faq/answer/i_can_still_insert_numbers_outside_the_range_specified_with_a_qdoublevalida
-
 #include <QDoubleValidator>
 
+/**
+ * \brief A validator for an input field which only accepts decimals.
+ * Source code adapted from [Qt developer fac](http://developer.qt.nokia.com/faq/answer/i_can_still_insert_numbers_outside_the_range_specified_with_a_qdoublevalida)
+ */
 class StrictDoubleValidator : public QDoubleValidator
 {
 public:
diff --git a/Gui/Base/StrictIntValidator.h b/Gui/Base/StrictIntValidator.h
index ad7533b1aded04ffe7b19bbf656c358d2dbe75cf..90644b38298f076eeb0eea4806ad6dce542890fb 100644
--- a/Gui/Base/StrictIntValidator.h
+++ b/Gui/Base/StrictIntValidator.h
@@ -8,11 +8,12 @@
 #ifndef STRICTINTVALIDATOR_H_
 #define STRICTINTVALIDATOR_H_
 
-// source code adapted from:
-// http://developer.qt.nokia.com/faq/answer/i_can_still_insert_numbers_outside_the_range_specified_with_a_qdoublevalida
-
 #include <QIntValidator>
 
+/**
+ * \brief A validator for an input field which only accepts integers.
+ * Source code adapted from [Qt developer fac](http://developer.qt.nokia.com/faq/answer/i_can_still_insert_numbers_outside_the_range_specified_with_a_qdoublevalida)
+ */
 class StrictIntValidator : public QIntValidator
 {
 public:
diff --git a/Gui/DataView/NetCdfConfigureDialog.h b/Gui/DataView/NetCdfConfigureDialog.h
index 8c43863bc1106d4aa51a54c8b5d0ba0c86ea3ec5..f7a5aed83344d3b4b8372271748da7b84d95e5fe 100644
--- a/Gui/DataView/NetCdfConfigureDialog.h
+++ b/Gui/DataView/NetCdfConfigureDialog.h
@@ -18,6 +18,9 @@ namespace MeshLib {
 
 class VtkGeoImageSource;
 
+/**
+ * \brief The dialog which presents the user options to load NetCDF-files.
+ */
 class NetCdfConfigureDialog : public QDialog, private Ui_NetCdfConfigure
 {
 	Q_OBJECT
@@ -52,7 +55,7 @@ private:
 	double getResolution();
 	QString setName();
 	void reverseNorthSouth(double* data, size_t width, size_t height);
-	
+
 	NcFile *_currentFile;
 	NcVar *_currentVar;
 	QDateTime _currentInitialDateTime;
diff --git a/Gui/VtkVis/VtkCompositeFilter.h b/Gui/VtkVis/VtkCompositeFilter.h
index a83e098b16757f8e4a6b39ac3187646defb48a82..992eb21eb8f2dfcf41900c3d3681a8e522646a3a 100644
--- a/Gui/VtkVis/VtkCompositeFilter.h
+++ b/Gui/VtkVis/VtkCompositeFilter.h
@@ -10,25 +10,26 @@
 
 class vtkAlgorithm;
 
-/// @brief Is used to combine several filter in one VtkVisPipelineItem. You can
-/// use vtk filter and custom filter. To subclass this you have to implement the
-/// init() function. There you combine the filters. Make sure to set the members
-/// _inputDataObjectType, _outputDataObjectType and _outputAlgorithm. Make also
-/// sure to implement VtkAlgorithmProperties::SetUserProperty() and
-/// VtkAlgorithmProperties::SetUserVectorProperty().
-///
-/// Allocate vtk objects inside init() with vtkSmartPointer except for the last
-/// filter. This filter must also be set to _outputAlgorithm, e.g.
-/// \code
-/// MyVtkFilter* lastFilter = MyVtkFilter::New();
-/// ...(do something here)
-/// _outputAlgorithm = lastFilter;
-/// \endcode
-///
-/// Create user properties with ogsUserPropertyMacro or ogsUserVecxPropertyMacro
-/// and initialize these properties inside the constructor with
-/// this->Set[Property Name](value)
-/// See VtkCompositeThresholdFilter for an example.
+/**
+ * @brief Is used to combine several filter in one VtkVisPipelineItem. You can
+ * use vtk filter and custom filter. To subclass this you have to implement the
+ * init() function. There you combine the filters. Make sure to set the members
+ * _inputDataObjectType, _outputDataObjectType and _outputAlgorithm. Make also
+ * sure to implement VtkAlgorithmProperties::SetUserProperty() and
+ * VtkAlgorithmProperties::SetUserVectorProperty().
+ *
+ * Allocate vtk objects inside init() with vtkSmartPointer except for the last
+ * filter. This filter must also be set to _outputAlgorithm, e.g.
+ *
+ *     MyVtkFilter* lastFilter = MyVtkFilter::New();
+ *     ...(do something here)
+ *     _outputAlgorithm = lastFilter;
+ *
+ * Create user properties with `ogsUserPropertyMacro` or `ogsUserVecxPropertyMacro`
+ * and initialize these properties inside the constructor with
+ * `this->Set[Property Name](value)`.
+ * See VtkCompositeThresholdFilter for an example.
+ */
 class VtkCompositeFilter : public VtkAlgorithmProperties
 {
 public:
@@ -57,7 +58,8 @@ public:
 	vtkAlgorithm* GetOutputAlgorithm() const { return _outputAlgorithm; }
 
 protected:
-	/// See vtkSetGet.h for the defines
+	/// See [vtkSetGet.h](https://github.com/Kitware/VTK/blob/master/Common/Core/vtkSetGet.h)
+	/// for the defines
 	int _inputDataObjectType;
 	int _outputDataObjectType;
 
diff --git a/Gui/VtkVis/VtkGeoImageSource.h b/Gui/VtkVis/VtkGeoImageSource.h
index 3e12f7ab926d623b3bb5e8c21f8d4aaf5eb65c8d..b24877a23f5d80ba04f7764c18cb256d698a6f99 100644
--- a/Gui/VtkVis/VtkGeoImageSource.h
+++ b/Gui/VtkVis/VtkGeoImageSource.h
@@ -16,7 +16,9 @@ class vtkQImageToImageSource;
 class vtkImageShiftScale;
 class vtkImageData;
 
-
+/**
+ * \brief The VtkVisPipeline source object of a geo-referenced image (file).
+ */
 class VtkGeoImageSource : public vtkSimpleImageToImageFilter, public VtkAlgorithmProperties
 {
 public:
diff --git a/Gui/VtkVis/VtkSelectionFilter.h b/Gui/VtkVis/VtkSelectionFilter.h
index c58e6f6ee650a508ded1ffc3769b205a97943e39..86843bda388e853a029f56659744aaa6671fc04c 100644
--- a/Gui/VtkVis/VtkSelectionFilter.h
+++ b/Gui/VtkVis/VtkSelectionFilter.h
@@ -14,6 +14,9 @@
 
 #include <vector>
 
+/**
+ * \brief
+ */
 class VtkSelectionFilter : public vtkUnstructuredGridAlgorithm, public VtkAlgorithmProperties
 {
 public:
diff --git a/Gui/VtkVis/VtkVisHelper.h b/Gui/VtkVis/VtkVisHelper.h
index 088bd54aa46a3f5d0861246bb3b1853ef5fd5c83..26c1cf478ee90d6176a7e877a65f6dc9d4524dd3 100644
--- a/Gui/VtkVis/VtkVisHelper.h
+++ b/Gui/VtkVis/VtkVisHelper.h
@@ -10,6 +10,9 @@ class QImage;
 class vtkTexture;
 class vtkImageData;
 
+/**
+ * \brief Some data conversion helper functions.
+ */
 class VtkVisHelper
 {
 public:
diff --git a/MeshLib/MshEnums.h b/MeshLib/MshEnums.h
index 765a4dcfd9ca0c9f3c6798e0cb1013a59cb22ad9..baf5465baec167e04c727f8503d3e819495386ec 100644
--- a/MeshLib/MshEnums.h
+++ b/MeshLib/MshEnums.h
@@ -32,6 +32,9 @@ struct MshElemType
 	};
 };
 
+/**
+ * \brief Describes a mesh quality criteria.
+ */
 struct MshQualityType
 {
 	enum type {