@@ -68,9 +68,9 @@ namespace SIMPL
6868using Rgb = uint32_t ;
6969const Rgb RGB_MASK = 0x00ffffff ; // masks RGB values
7070const QString PathSep (" |" );
71- static const uint8_t Unchecked = 0 ;
72- static const uint8_t PartiallyChecked = 1 ;
73- static const uint8_t Checked = 2 ;
71+ const uint8_t Unchecked = 0 ;
72+ const uint8_t PartiallyChecked = 1 ;
73+ const uint8_t Checked = 2 ;
7474
7575enum InfoStringFormat
7676{
@@ -84,9 +84,9 @@ enum InfoStringFormat
8484/* * @brief Constants defined for the Stacking order of images into a 3D Volume */
8585namespace RefFrameZDir
8686{
87- static const unsigned int LowtoHigh = 0 ;
88- static const unsigned int HightoLow = 1 ;
89- static const unsigned int UnknownRefFrameZDirection = 2 ;
87+ const unsigned int LowtoHigh = 0 ;
88+ const unsigned int HightoLow = 1 ;
89+ const unsigned int UnknownRefFrameZDirection = 2 ;
9090} // namespace RefFrameZDir
9191
9292 namespace TypeNames
@@ -115,22 +115,22 @@ static const unsigned int UnknownRefFrameZDirection = 2;
115115
116116 namespace TypeEnums
117117 {
118- static const int Int8 = 0 ;
119- static const int UInt8 = 1 ;
120- static const int Int16 = 2 ;
121- static const int UInt16 = 3 ;
122- static const int Int32 = 4 ;
123- static const int UInt32 = 5 ;
124- static const int Int64 = 6 ;
125- static const int UInt64 = 7 ;
126- static const int Float = 8 ;
127- static const int Double = 9 ;
128- static const int Bool = 10 ;
129- static const int SizeT = 11 ;
130-
131- static const int UnknownType = 12 ;
132- const QString SupportedTypeList (TypeNames::Bool + " , " + TypeNames::Int8 + " , " + TypeNames::UInt8 + " , " + TypeNames::Int16 + " , " + TypeNames::UInt16 + " , " + TypeNames::Int32 + " , " +
133- TypeNames::UInt32 + " , " + TypeNames::Int64 + " , " + TypeNames::UInt64 + " , " + TypeNames::Float + " , " + TypeNames::Double + " , " + TypeNames::SizeT);
118+ const int Int8 = 0 ;
119+ const int UInt8 = 1 ;
120+ const int Int16 = 2 ;
121+ const int UInt16 = 3 ;
122+ const int Int32 = 4 ;
123+ const int UInt32 = 5 ;
124+ const int Int64 = 6 ;
125+ const int UInt64 = 7 ;
126+ const int Float = 8 ;
127+ const int Double = 9 ;
128+ const int Bool = 10 ;
129+ const int SizeT = 11 ;
130+
131+ const int UnknownType = 12 ;
132+ const QString SupportedTypeList (TypeNames::Bool + " , " + TypeNames::Int8 + " , " + TypeNames::UInt8 + " , " + TypeNames::Int16 + " , " + TypeNames::UInt16 + " , " + TypeNames::Int32 + " , " +
133+ TypeNames::UInt32 + " , " + TypeNames::Int64 + " , " + TypeNames::UInt64 + " , " + TypeNames::Float + " , " + TypeNames::Double + " , " + TypeNames::SizeT);
134134 }
135135
136136 namespace NumericTypes
@@ -215,8 +215,8 @@ static const unsigned int UnknownRefFrameZDirection = 2;
215215 const QString None (" None" );
216216 const QString AnyPrimitive (" Any" );
217217 const size_t AnyComponentSize = std::numeric_limits<size_t >::max();
218- // static const uint32_t AnyAttributeMatrix = std::numeric_limits<uint32_t>::max();
219- // static const uint32_t AnyGeometry = std::numeric_limits<uint32_t>::max();
218+ // const uint32_t AnyAttributeMatrix = std::numeric_limits<uint32_t>::max();
219+ // const uint32_t AnyGeometry = std::numeric_limits<uint32_t>::max();
220220
221221 const QString AttributeMatrixName (" AttributeMatrix" );
222222 const QString ElementAttributeMatrixName (" ElementAttributeMatrix" );
0 commit comments