Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ScCommand.cpp 264B

123456789101112131415161718
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #include "ScCommand.h"
  5. ScCommand::~ScCommand()
  6. {
  7. }
  8. int ScCommand::hexToDec(const char c)
  9. {
  10. if (c >= 'a')
  11. return 10 + (c - ('a' - 'A')) - 'A';
  12. if (c >= 'A')
  13. return 10 + c - 'A';
  14. return c - '0';
  15. }