From ce02d57e97b34bc43e09562d48f05b841bad2c79 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sat, 20 Jul 2019 15:22:51 +0200 Subject: [PATCH] add copyright header everywhere --- header.txt | 18 ++++++++++++++++++ libdc/include/dc/account.h | 18 ++++++++++++++++++ libdc/include/dc/api.h | 18 ++++++++++++++++++ libdc/include/dc/apisync.h | 18 ++++++++++++++++++ libdc/include/dc/channel.h | 18 ++++++++++++++++++ libdc/include/dc/event.h | 18 ++++++++++++++++++ libdc/include/dc/gateway.h | 18 ++++++++++++++++++ libdc/include/dc/guild.h | 18 ++++++++++++++++++ libdc/include/dc/loop.h | 18 ++++++++++++++++++ libdc/include/dc/message.h | 18 ++++++++++++++++++ libdc/include/dc/refable.h | 18 ++++++++++++++++++ libdc/include/dc/session.h | 18 ++++++++++++++++++ libdc/include/dc/util.h | 18 ++++++++++++++++++ libdc/src/internal.h | 18 ++++++++++++++++++ ncdc/include/ncdc/cmds.h | 18 ++++++++++++++++++ ncdc/include/ncdc/config.h | 18 ++++++++++++++++++ ncdc/include/ncdc/input.h | 18 ++++++++++++++++++ ncdc/include/ncdc/keycodes.h | 18 ++++++++++++++++++ ncdc/include/ncdc/mainwindow.h | 18 ++++++++++++++++++ ncdc/include/ncdc/ncdc.h | 18 ++++++++++++++++++ ncdc/include/ncdc/textview.h | 18 ++++++++++++++++++ ncdc/include/ncdc/treeview.h | 18 ++++++++++++++++++ 22 files changed, 396 insertions(+) create mode 100644 header.txt diff --git a/header.txt b/header.txt new file mode 100644 index 0000000..2f427df --- /dev/null +++ b/header.txt @@ -0,0 +1,18 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + diff --git a/libdc/include/dc/account.h b/libdc/include/dc/account.h index 97471df..757524d 100644 --- a/libdc/include/dc/account.h +++ b/libdc/include/dc/account.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_ACCOUNT_H #define DC_ACCOUNT_H diff --git a/libdc/include/dc/api.h b/libdc/include/dc/api.h index 2a5a129..26edf98 100644 --- a/libdc/include/dc/api.h +++ b/libdc/include/dc/api.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_API_H #define NCDC_API_H diff --git a/libdc/include/dc/apisync.h b/libdc/include/dc/apisync.h index 9edc62c..39507a2 100644 --- a/libdc/include/dc/apisync.h +++ b/libdc/include/dc/apisync.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_API_ASYNC_H #define DC_API_ASYNC_H diff --git a/libdc/include/dc/channel.h b/libdc/include/dc/channel.h index 38c4615..501999a 100644 --- a/libdc/include/dc/channel.h +++ b/libdc/include/dc/channel.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_CHANNEL_H #define DC_CHANNEL_H diff --git a/libdc/include/dc/event.h b/libdc/include/dc/event.h index d1da560..0b4c3dd 100644 --- a/libdc/include/dc/event.h +++ b/libdc/include/dc/event.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_EVENT_H #define DC_EVENT_H diff --git a/libdc/include/dc/gateway.h b/libdc/include/dc/gateway.h index 03f3d0f..8869d7f 100644 --- a/libdc/include/dc/gateway.h +++ b/libdc/include/dc/gateway.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_GATEWAY_H #define DC_GATEWAY_H diff --git a/libdc/include/dc/guild.h b/libdc/include/dc/guild.h index 8a6a498..80e7a8b 100644 --- a/libdc/include/dc/guild.h +++ b/libdc/include/dc/guild.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_GUILD_H #define DC_GUILD_H diff --git a/libdc/include/dc/loop.h b/libdc/include/dc/loop.h index 6191326..412bd87 100644 --- a/libdc/include/dc/loop.h +++ b/libdc/include/dc/loop.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_LOOP_H #define DC_LOOP_H diff --git a/libdc/include/dc/message.h b/libdc/include/dc/message.h index 52abe01..c792443 100644 --- a/libdc/include/dc/message.h +++ b/libdc/include/dc/message.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_MESSAGE_H #define DC_MESSAGE_H diff --git a/libdc/include/dc/refable.h b/libdc/include/dc/refable.h index 22caffd..83a1cbd 100644 --- a/libdc/include/dc/refable.h +++ b/libdc/include/dc/refable.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_REFABLE_H #define DC_REFABLE_H diff --git a/libdc/include/dc/session.h b/libdc/include/dc/session.h index 5fe76e5..54b7464 100644 --- a/libdc/include/dc/session.h +++ b/libdc/include/dc/session.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_SESSION_H #define DC_SESSION_H diff --git a/libdc/include/dc/util.h b/libdc/include/dc/util.h index eb6bea7..16eff82 100644 --- a/libdc/include/dc/util.h +++ b/libdc/include/dc/util.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_UTIL_H #define NCDC_UTIL_H diff --git a/libdc/src/internal.h b/libdc/src/internal.h index bc9ef29..f79bd98 100644 --- a/libdc/src/internal.h +++ b/libdc/src/internal.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef DC_INTERNAL_H #define DC_INTERNAL_H diff --git a/ncdc/include/ncdc/cmds.h b/ncdc/include/ncdc/cmds.h index 86430a1..6c73597 100644 --- a/ncdc/include/ncdc/cmds.h +++ b/ncdc/include/ncdc/cmds.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_CMDS_H #define NCDC_CMDS_H diff --git a/ncdc/include/ncdc/config.h b/ncdc/include/ncdc/config.h index 6b9fd42..b91c9c7 100644 --- a/ncdc/include/ncdc/config.h +++ b/ncdc/include/ncdc/config.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_CONFIG_H #define NCDC_CONFIG_H diff --git a/ncdc/include/ncdc/input.h b/ncdc/include/ncdc/input.h index e7d9c48..6538970 100644 --- a/ncdc/include/ncdc/input.h +++ b/ncdc/include/ncdc/input.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_INPUT_H #define NCDC_INPUT_H diff --git a/ncdc/include/ncdc/keycodes.h b/ncdc/include/ncdc/keycodes.h index 1f0aa1a..88b69d4 100644 --- a/ncdc/include/ncdc/keycodes.h +++ b/ncdc/include/ncdc/keycodes.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_KEYCODES_H #define NCDC_KEYCODES_H diff --git a/ncdc/include/ncdc/mainwindow.h b/ncdc/include/ncdc/mainwindow.h index 59509ee..de32b8e 100644 --- a/ncdc/include/ncdc/mainwindow.h +++ b/ncdc/include/ncdc/mainwindow.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_MAINWINDOW_H #define NCDC_MAINWINDOW_H diff --git a/ncdc/include/ncdc/ncdc.h b/ncdc/include/ncdc/ncdc.h index e3866aa..fc60e36 100644 --- a/ncdc/include/ncdc/ncdc.h +++ b/ncdc/include/ncdc/ncdc.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_H #define NCDC_H diff --git a/ncdc/include/ncdc/textview.h b/ncdc/include/ncdc/textview.h index 42eb00e..bd0f774 100644 --- a/ncdc/include/ncdc/textview.h +++ b/ncdc/include/ncdc/textview.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_TEXTVIEW_H #define NCDC_TEXTVIEW_H diff --git a/ncdc/include/ncdc/treeview.h b/ncdc/include/ncdc/treeview.h index 7dff29d..5f13714 100644 --- a/ncdc/include/ncdc/treeview.h +++ b/ncdc/include/ncdc/treeview.h @@ -1,3 +1,21 @@ +/* + * Part of ncdc - a discord client for the console + * Copyright (C) 2019 Florian Stinglmayr + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef NCDC_TREEVIEW_H #define NCDC_TREEVIEW_H