Skip to content
Snippets Groups Projects
PropertyWithValue.cpp 679 B
Newer Older
#include "MantidKernel/PropertyWithValue.h"
Peterson, Peter's avatar
Peterson, Peter committed
#include "MantidKernel/System.h"
    #define INSTANTIATE(Type) \
      template DLLExport class PropertyWithValue<Type>; \
      template DLLExport class PropertyWithValue<std::vector<Type> >;
    // Explicit instantiations
    INSTANTIATE(int);
    INSTANTIATE(long);
    INSTANTIATE(long long);
    INSTANTIATE(unsigned short int);
    INSTANTIATE(unsigned int);
    INSTANTIATE(unsigned long);
    INSTANTIATE(unsigned long long);
    INSTANTIATE(bool);
    INSTANTIATE(double);
    INSTANTIATE(std::string);