diff --git a/Applications/FileIO/SHPInterface.h b/Applications/FileIO/SHPInterface.h
index cdcc554bbe2af1863f63c0710d55681a5c39490c..60f26e0a320c32514f0ec37e75c472521a71816f 100644
--- a/Applications/FileIO/SHPInterface.h
+++ b/Applications/FileIO/SHPInterface.h
@@ -40,7 +40,7 @@ namespace FileIO
 /**
  * \brief Manages the import of ESRI shape files into GeoLib.
  */
-class SHPInterface
+class SHPInterface final
 {
 public:
     /// Connection between ESRI type system for shape files and OGS GeoLib.
@@ -54,7 +54,10 @@ public:
     };
 
     /// Constructor
-    SHPInterface(GeoLib::GEOObjects& geoObjects) : _geoObjects(geoObjects) {}
+    explicit SHPInterface(GeoLib::GEOObjects& geoObjects)
+        : _geoObjects(geoObjects)
+    {
+    }
 
     /// Reads the header of the shape file.
     bool readSHPInfo(const std::string &filename, int &shapeType, int &numberOfEntities);