forked from dushibaiyu/QSsh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added copyright to SecureUploader Example
- Loading branch information
Andres Pagliano
committed
Nov 23, 2012
1 parent
d6dc7eb
commit e332f7e
Showing
3 changed files
with
58 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 1,26 @@ | ||
#include <QCoreApplication> | ||
/************************************************************************** | ||
** | ||
** This file is part of QSsh | ||
** | ||
** Copyright (c) 2012 LVK | ||
** | ||
** Contact: [email protected] | ||
** | ||
** GNU Lesser General Public License Usage | ||
** | ||
** This file may be used under the terms of the GNU Lesser General Public | ||
** License version 2.1 as published by the Free Software Foundation and | ||
** appearing in the file LICENSE.LGPL included in the packaging of this file. | ||
** Please review the following information to ensure the GNU Lesser General | ||
** Public License version 2.1 requirements will be met: | ||
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
**************************************************************************/ | ||
|
||
#include "securefileuploader.h" | ||
#include <iostream> | ||
#include <QCoreApplication> | ||
#include <QStringList> | ||
#include <iostream> | ||
#include "securefileuploader.h" | ||
|
||
void showSyntax(); | ||
QString getPassword(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 1,22 @@ | ||
/************************************************************************** | ||
** | ||
** This file is part of QSsh | ||
** | ||
** Copyright (c) 2012 LVK | ||
** | ||
** Contact: [email protected] | ||
** | ||
** GNU Lesser General Public License Usage | ||
** | ||
** This file may be used under the terms of the GNU Lesser General Public | ||
** License version 2.1 as published by the Free Software Foundation and | ||
** appearing in the file LICENSE.LGPL included in the packaging of this file. | ||
** Please review the following information to ensure the GNU Lesser General | ||
** Public License version 2.1 requirements will be met: | ||
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
**************************************************************************/ | ||
|
||
#include "securefileuploader.h" | ||
|
||
#include <QtDebug> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 1,21 @@ | ||
/************************************************************************** | ||
** | ||
** This file is part of QSsh | ||
** | ||
** Copyright (c) 2012 LVK | ||
** | ||
** Contact: [email protected] | ||
** | ||
** GNU Lesser General Public License Usage | ||
** | ||
** This file may be used under the terms of the GNU Lesser General Public | ||
** License version 2.1 as published by the Free Software Foundation and | ||
** appearing in the file LICENSE.LGPL included in the packaging of this file. | ||
** Please review the following information to ensure the GNU Lesser General | ||
** Public License version 2.1 requirements will be met: | ||
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. | ||
** | ||
**************************************************************************/ | ||
#ifndef SECUREFILEUPLOADER_H | ||
#define SECUREFILEUPLOADER_H | ||
|
||
|