comments.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. Distribution and use rights are outlined in\n"
  59. "// the file \"COPYING\" which should have been included with this file. If this\n"
  60. "// file is missing or damaged, see the license at:\n"
  61. "//\n"
  62. "// http://www.fltk.org/COPYING.php\n"
  63. "//\n"
  64. "// Please report all bugs and problems on the following page:\n"
  65. "//\n"
  66. "// http://www.fltk.org/str.php\n"
  67. "//\n",
  68. // FLTK/Footer
  69. "\n//\n"
  70. "// End of \"$Id$\".\n"
  71. "//",
  72. };