You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.4 KiB

  1. /*
  2. * This program source code file is part of KICAD, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2019 jean-pierre.charras
  5. * Copyright (C) 1992-2019 Kicad Developers, see AUTHORS.txt for contributors.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 3
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. /**
  21. * @file common_data.h
  22. * @note lists of constants used in different panels
  23. */
  24. #ifndef COMMON_DATA_H
  25. #define COMMON_DATA_H
  26. #include <wx/arrstr.h>
  27. /**
  28. * @return a list of dielectric constants (Er) of some materials
  29. * used to make PCBs
  30. */
  31. wxArrayString StandardRelativeDielectricConstantList();
  32. /**
  33. * @return a list of loss tangent of some materials
  34. * used to make PCBs
  35. */
  36. wxArrayString StandardLossTangentList();
  37. /**
  38. * @return a list of resistivity constants (Er) of some conductors
  39. * used to make PCBs
  40. */
  41. wxArrayString StandardResistivityList();
  42. #endif // #ifndef COMMON_DATA_H