Attach GPL3+ licence
This commit is contained in:
parent
903095c23f
commit
9fb7dd8537
9 changed files with 794 additions and 0 deletions
17
src/main.cpp
17
src/main.cpp
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "parser.hpp"
|
||||
#include "visitors/debug_visitor.hpp"
|
||||
#include "visitors/find_t_visitor.hpp"
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#if !defined(NDEBUG)
|
||||
//# define BOOST_SPIRIT_X3_DEBUG
|
||||
#endif
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string_view>
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "debug_visitor.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../parser.hpp"
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "find_t_visitor.hpp"
|
||||
#include "split.hpp"
|
||||
|
||||
|
|
|
@ -1,3 +1,20 @@
|
|||
/* Copyright 2025, Michele "King_DuckZ" Santullo
|
||||
* This file is part of ducktorrent.
|
||||
*
|
||||
* Ducktorrent 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.
|
||||
*
|
||||
* Ducktorrent 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 ducktorrent. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../parser.hpp"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue