From df6f5fab1ab6d4f5f87c6a59e900c848ef42d1a5 Mon Sep 17 00:00:00 2001 From: xiaoming <2014500726@smail.xtu.edu.cn> Date: Fri, 11 Aug 2023 09:46:34 +0800 Subject: [PATCH] doc:add LICENSE Signed-off-by: xiaoming <2014500726@smail.xtu.edu.cn> --- src/ImgExport.cpp | 19 +++++++++++++++++++ src/ImgExport.h | 19 +++++++++++++++++++ src/ImgViewer.cpp | 23 ++++++++++++++++++----- src/ImgViewer.h | 23 ++++++++++++++++++----- src/YUVdecoder.cpp | 23 ++++++++++++++++++----- src/YUVdecoder.h | 23 ++++++++++++++++++----- src/YUVviewer.cpp | 23 ++++++++++++++++++----- src/YUVviewer.h | 23 ++++++++++++++++++----- src/configFile.cpp | 23 ++++++++++++++++++----- src/configFile.h | 23 ++++++++++++++++++----- 10 files changed, 182 insertions(+), 40 deletions(-) diff --git a/src/ImgExport.cpp b/src/ImgExport.cpp index 332aa2f..b692b56 100644 --- a/src/ImgExport.cpp +++ b/src/ImgExport.cpp @@ -1,3 +1,22 @@ +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2022 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 . + */ #include #include #include diff --git a/src/ImgExport.h b/src/ImgExport.h index 5bb9fe7..4ed805c 100644 --- a/src/ImgExport.h +++ b/src/ImgExport.h @@ -1,3 +1,22 @@ +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2022 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 BOOTSELECTBOX_H #define BOOTSELECTBOX_H diff --git a/src/ImgViewer.cpp b/src/ImgViewer.cpp index 2f416a7..ce74cba 100644 --- a/src/ImgViewer.cpp +++ b/src/ImgViewer.cpp @@ -1,8 +1,21 @@ -/** - * @file ImgViewer.cpp - * @brief 图像显示界面 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 . */ #include #include diff --git a/src/ImgViewer.h b/src/ImgViewer.h index 4d64942..5ead084 100644 --- a/src/ImgViewer.h +++ b/src/ImgViewer.h @@ -1,8 +1,21 @@ -/** - * @file ImgViewer.h - * @brief 图像显示界面 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 IMGVIEWER_H #define IMGVIEWER_H diff --git a/src/YUVdecoder.cpp b/src/YUVdecoder.cpp index 1f71594..64b89f0 100644 --- a/src/YUVdecoder.cpp +++ b/src/YUVdecoder.cpp @@ -1,8 +1,21 @@ -/** - * @file YUVdecoder.cpp - * @brief 解码YUV数据 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 . */ #include #include diff --git a/src/YUVdecoder.h b/src/YUVdecoder.h index 4ca818b..45353c4 100644 --- a/src/YUVdecoder.h +++ b/src/YUVdecoder.h @@ -1,8 +1,21 @@ -/** - * @file YUVdecoder.h - * @brief 解码YUV数据 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 YUVDECODER_H #define YUVDECODER_H diff --git a/src/YUVviewer.cpp b/src/YUVviewer.cpp index c7d5caa..7baa115 100644 --- a/src/YUVviewer.cpp +++ b/src/YUVviewer.cpp @@ -1,8 +1,21 @@ -/** - * @file YUVviewer.cpp - * @brief 主界面 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 . */ #include #include diff --git a/src/YUVviewer.h b/src/YUVviewer.h index d51d5bb..d79b884 100644 --- a/src/YUVviewer.h +++ b/src/YUVviewer.h @@ -1,8 +1,21 @@ -/** - * @file YUVviewer.h - * @brief 主界面 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 YUVVIEWER_H #define YUVVIEWER_H diff --git a/src/configFile.cpp b/src/configFile.cpp index 509c4ae..08e0ca9 100644 --- a/src/configFile.cpp +++ b/src/configFile.cpp @@ -1,8 +1,21 @@ -/** - * @file configFile.cpp - * @brief 管理配置文件 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 . */ #include #include diff --git a/src/configFile.h b/src/configFile.h index 8b1ca92..8ca0613 100644 --- a/src/configFile.h +++ b/src/configFile.h @@ -1,8 +1,21 @@ -/** - * @file configFile.h - * @brief 管理配置文件 - * @version 1.0 - * @date 2020-04-14 +/* + * This file is part of the https://github.com/QQxiaoming/YUVviewer.git + * project. + * + * Copyright (C) 2020 Quard <2014500726@smail.xtu.edu.cn> + * + * 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 CONFIGFILE_H #define CONFIGFILE_H