Skip to content

Commit

Permalink
Add instasiations of ValueFieldSpecialization
Browse files Browse the repository at this point in the history
  • Loading branch information
magnesj committed Apr 1, 2024
1 parent 0b09863 commit 9bcfdda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@ template class caf::PdmDataValueField<int>;
template class caf::PdmDataValueField<bool>;
template class caf::PdmDataValueField<QString>;
template class caf::PdmDataValueField<double>;

template class caf::PdmValueFieldSpecialization<int>;
template class caf::PdmValueFieldSpecialization<bool>;
template class caf::PdmValueFieldSpecialization<QString>;
template class caf::PdmValueFieldSpecialization<double>;
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@

#include "cafPdmDataValueField.h"

#include "cafInternalPdmValueFieldSpecializations.h"

extern template class caf::PdmDataValueField<int>;
extern template class caf::PdmDataValueField<bool>;
extern template class caf::PdmDataValueField<QString>;
extern template class caf::PdmDataValueField<double>;

extern template class caf::PdmValueFieldSpecialization<int>;
extern template class caf::PdmValueFieldSpecialization<bool>;
extern template class caf::PdmValueFieldSpecialization<QString>;
extern template class caf::PdmValueFieldSpecialization<double>;

0 comments on commit 9bcfdda

Please sign in to comment.