1 |
36 |
dgisselq |
////////////////////////////////////////////////////////////////////////////////
|
2 |
|
|
//
|
3 |
|
|
// Filename: legal.cpp
|
4 |
|
|
//
|
5 |
|
|
// Project: A General Purpose Pipelined FFT Implementation
|
6 |
|
|
//
|
7 |
|
|
// Purpose: Contains the information and logic necessary to place a
|
8 |
|
|
// copyright, name, author, and purpoose statement at the head of
|
9 |
|
|
// every file.
|
10 |
|
|
//
|
11 |
|
|
// Creator: Dan Gisselquist, Ph.D.
|
12 |
|
|
// Gisselquist Technology, LLC
|
13 |
|
|
//
|
14 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
15 |
|
|
//
|
16 |
37 |
dgisselq |
// Copyright (C) 2015-2019, Gisselquist Technology, LLC
|
17 |
36 |
dgisselq |
//
|
18 |
|
|
// This program is free software (firmware): you can redistribute it and/or
|
19 |
|
|
// modify it under the terms of the GNU General Public License as published
|
20 |
|
|
// by the Free Software Foundation, either version 3 of the License, or (at
|
21 |
|
|
// your option) any later version.
|
22 |
|
|
//
|
23 |
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
24 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY or
|
25 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
26 |
|
|
// for more details.
|
27 |
|
|
//
|
28 |
|
|
// You should have received a copy of the GNU General Public License along
|
29 |
37 |
dgisselq |
// with this program. (It's in the $(ROOT)/doc directory. Run make with no
|
30 |
36 |
dgisselq |
// target there if the PDF file isn't present.) If not, see
|
31 |
|
|
// <http://www.gnu.org/licenses/> for a copy.
|
32 |
|
|
//
|
33 |
|
|
// License: GPL, v3, as defined and found on www.gnu.org,
|
34 |
|
|
// http://www.gnu.org/licenses/gpl.html
|
35 |
|
|
//
|
36 |
|
|
//
|
37 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
38 |
|
|
//
|
39 |
|
|
//
|
40 |
|
|
#include "legal.h"
|
41 |
|
|
|
42 |
|
|
const char cpyleft[] =
|
43 |
|
|
SLASHLINE
|
44 |
|
|
"//\n"
|
45 |
37 |
dgisselq |
"// Copyright (C) 2015-2019, Gisselquist Technology, LLC\n"
|
46 |
36 |
dgisselq |
"//\n"
|
47 |
37 |
dgisselq |
"// This file is part of the general purpose pipelined FFT project.\n"
|
48 |
36 |
dgisselq |
"//\n"
|
49 |
37 |
dgisselq |
"// The pipelined FFT project is free software (firmware): you can redistribute\n"
|
50 |
|
|
"// it and/or modify it under the terms of the GNU Lesser General Public License\n"
|
51 |
|
|
"// as published by the Free Software Foundation, either version 3 of the\n"
|
52 |
|
|
"// License, or (at your option) any later version.\n"
|
53 |
36 |
dgisselq |
"//\n"
|
54 |
37 |
dgisselq |
"// The pipelined FFT project is distributed in the hope that it will be useful,\n"
|
55 |
|
|
"// but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
|
56 |
|
|
"// MERCHANTIBILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser\n"
|
57 |
|
|
"// General Public License for more details.\n"
|
58 |
|
|
"//\n"
|
59 |
|
|
"// You should have received a copy of the GNU Lesser General Public License\n"
|
60 |
|
|
"// along with this program. (It's in the $(ROOT)/doc directory. Run make\n"
|
61 |
|
|
"// with no target there if the PDF file isn't present.) If not, see\n"
|
62 |
36 |
dgisselq |
"// <http://www.gnu.org/licenses/> for a copy.\n"
|
63 |
|
|
"//\n"
|
64 |
37 |
dgisselq |
"// License: LGPL, v3, as defined and found on www.gnu.org,\n"
|
65 |
|
|
"// http://www.gnu.org/licenses/lgpl.html\n"
|
66 |
36 |
dgisselq |
"//\n"
|
67 |
|
|
"//\n"
|
68 |
|
|
SLASHLINE;
|
69 |
|
|
const char prjname[] = "A General Purpose Pipelined FFT Implementation";
|
70 |
|
|
const char creator[] = "// Creator: Dan Gisselquist, Ph.D.\n"
|
71 |
|
|
"// Gisselquist Technology, LLC\n";
|
72 |
|
|
|