Skip to content

Commit

Permalink
doc:add LICENSE
Browse files Browse the repository at this point in the history
Signed-off-by: xiaoming <[email protected]>
  • Loading branch information
QQxiaoming committed Aug 11, 2023
1 parent 542fa99 commit df6f5fa
Show file tree
Hide file tree
Showing 10 changed files with 182 additions and 40 deletions.
19 changes: 19 additions & 0 deletions src/ImgExport.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* This file is part of the https://github.com/QQxiaoming/YUVviewer.git
* project.
*
* Copyright (C) 2022 Quard <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QFileDialog>
#include <QMessageBox>
#include <opencv2/opencv.hpp>
Expand Down
19 changes: 19 additions & 0 deletions src/ImgExport.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/*
* This file is part of the https://github.com/QQxiaoming/YUVviewer.git
* project.
*
* Copyright (C) 2022 Quard <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef BOOTSELECTBOX_H
#define BOOTSELECTBOX_H

Expand Down
23 changes: 18 additions & 5 deletions src/ImgViewer.cpp
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QImage>
#include <QFileInfo>
Expand Down
23 changes: 18 additions & 5 deletions src/ImgViewer.h
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef IMGVIEWER_H
#define IMGVIEWER_H
Expand Down
23 changes: 18 additions & 5 deletions src/YUVdecoder.cpp
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QList>
#include <QFile>
Expand Down
23 changes: 18 additions & 5 deletions src/YUVdecoder.h
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef YUVDECODER_H
#define YUVDECODER_H
Expand Down
23 changes: 18 additions & 5 deletions src/YUVviewer.cpp
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include <QScreen>
Expand Down
23 changes: 18 additions & 5 deletions src/YUVviewer.h
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef YUVVIEWER_H
#define YUVVIEWER_H
Expand Down
23 changes: 18 additions & 5 deletions src/configFile.cpp
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QDir>
#include <QFile>
Expand Down
23 changes: 18 additions & 5 deletions src/configFile.h
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef CONFIGFILE_H
#define CONFIGFILE_H
Expand Down

0 comments on commit df6f5fa

Please sign in to comment.