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.

83 lines
3.5KB

  1. static const char * const comment_text[] = {
  2. // GNU Public License/GPL Header
  3. "//\n"
  4. "// NameOfProgram, ShortDescription\n"
  5. "// Copyright (C) YYYY NameOfAuthor\n"
  6. "//\n"
  7. "// This program is free software; you can redistribute it and/or\n"
  8. "// modify it under the terms of the GNU General Public License\n"
  9. "// as published by the Free Software Foundation; either version 2\n"
  10. "// of the License, or (at your option) any later version.\n"
  11. "//\n"
  12. "// This program is distributed in the hope that it will be useful,\n"
  13. "// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  14. "// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  15. "// GNU General Public License for more details.\n"
  16. "//\n"
  17. "// You should have received a copy of the GNU General Public License\n"
  18. "// along with this program; if not, write to the Free Software\n"
  19. "// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
  20. "//\n",
  21. // GNU Public License/GPL Footer
  22. "\n//\n"
  23. "// NameOfProgram, ShortDescription\n"
  24. "// Copyright (C) YYYY NameOfAuthor\n"
  25. "//",
  26. // GNU Public License/LGPL Header
  27. "//\n"
  28. "// NameOfLibrary, ShortDescription\n"
  29. "// Copyright (C) YYYY NameOfAuthor\n"
  30. "//\n"
  31. "// This library is free software; you can redistribute it and/or\n"
  32. "// modify it under the terms of the GNU Lesser General Public\n"
  33. "// License as published by the Free Software Foundation; either\n"
  34. "// version 2.1 of the License, or (at your option) any later version.\n"
  35. "//\n"
  36. "// This library is distributed in the hope that it will be useful,\n"
  37. "// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  38. "// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
  39. "// GNU Lesser General Public License for more details.\n"
  40. "//\n"
  41. "// You should have received a copy of the GNU Lesser General Public\n"
  42. "// License along with this program; if not, write to the Free Software\n"
  43. "// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
  44. "//\n",
  45. // GNU Public License/LGPL Footer
  46. "\n//\n"
  47. "// NameOfLibrary, ShortDescription\n"
  48. "// Copyright (C) YYYY NameOfAuthor\n"
  49. "//",
  50. // FLTK/Header
  51. "//\n"
  52. "// \"$Id$\"\n"
  53. "//\n"
  54. "// ... for the Fast Light Tool Kit (FLTK).\n"
  55. "//\n"
  56. "// Copyright 1998-2010 by Bill Spitzak and others.\n"
  57. "//\n"
  58. "// This library is free software; you can redistribute it and/or\n"
  59. "// modify it under the terms of the GNU Library General Public\n"
  60. "// License as published by the Free Software Foundation; either\n"
  61. "// version 2 of the License, or (at your option) any later version.\n"
  62. "//\n"
  63. "// This library is distributed in the hope that it will be useful,\n"
  64. "// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
  65. "// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
  66. "// Library General Public License for more details.\n"
  67. "//\n"
  68. "// You should have received a copy of the GNU Library General Public\n"
  69. "// License along with this library; if not, write to the Free Software\n"
  70. "// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307\n"
  71. "// USA.\n"
  72. "//\n"
  73. "// Please report all bugs and problems on the following page:\n"
  74. "//\n"
  75. "// http://www.fltk.org/str.php\n"
  76. "//\n",
  77. // FLTK/Footer
  78. "\n//\n"
  79. "// End of \"$Id$\".\n"
  80. "//",
  81. };