Skip to content

v0.2.55..v0.2.56 changeset IntegerFieldDefinition.h

Garret Voltz edited this page Aug 14, 2020 · 3 revisions
diff --git a/hoot-core/src/main/cpp/hoot/core/io/schema/IntegerFieldDefinition.h b/hoot-core/src/main/cpp/hoot/core/io/schema/IntegerFieldDefinition.h
index 7f278c3..a791242 100644
--- a/hoot-core/src/main/cpp/hoot/core/io/schema/IntegerFieldDefinition.h
+++ b/hoot-core/src/main/cpp/hoot/core/io/schema/IntegerFieldDefinition.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2017, 2018 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef INTEGERFIELDDEFINITION_H
 #define INTEGERFIELDDEFINITION_H
@@ -38,7 +38,9 @@ namespace hoot
 class IntegerFieldDefinition : public FieldDefinition
 {
 public:
+
   IntegerFieldDefinition();
+  virtual ~IntegerFieldDefinition() = default;
 
   void addEnumeratedValue(int v) { _enumeratedValues.insert(v); }
 
@@ -61,6 +63,7 @@ public:
   virtual void validate(const QVariant& v, StrictChecking strict) const;
 
 private:
+
   int _min;
   int _max;
   int _defaultValue;
Clone this wiki locally