bbvariant.cpp 553 B

123456789101112131415161718
  1. #include "bbvariant.h"
  2. bbVariant::RepBase bbVariant::_null;
  3. template struct bbVariant::Rep<bbBool>;
  4. template struct bbVariant::Rep<bbByte>;
  5. template struct bbVariant::Rep<bbUByte>;
  6. template struct bbVariant::Rep<bbShort>;
  7. template struct bbVariant::Rep<bbUShort>;
  8. template struct bbVariant::Rep<bbInt>;
  9. template struct bbVariant::Rep<bbUInt>;
  10. template struct bbVariant::Rep<bbLong>;
  11. template struct bbVariant::Rep<bbULong>;
  12. template struct bbVariant::Rep<bbFloat>;
  13. template struct bbVariant::Rep<bbDouble>;
  14. template struct bbVariant::Rep<bbString>;