Skip to content

Commit

Permalink
license headers in source files
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Zalevskiy <denis.zalevskiy@jolla.com>
  • Loading branch information
Denis Zalevskiy committed May 20, 2014
1 parent 33e0a5a commit 387aee2
Show file tree
Hide file tree
Showing 22 changed files with 163 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/vault/config.hpp
@@ -1,5 +1,12 @@
#ifndef _VAULT_CONFIG_HPP_
#define _VAULT_CONFIG_HPP_
/**
* @file config.hpp
* @brief Vault configuration
* @author Giulio Camuffo <giulio.camuffo@jollamobile.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <QString>
#include <QMap>
Expand Down
7 changes: 7 additions & 0 deletions include/vault/debug.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_DEBUG_HPP_
#define _CUTES_DEBUG_HPP_
/**
* @file debug.hpp
* @brief Debug tracing support
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <QVariant>
#include <QDebug>
Expand Down
7 changes: 7 additions & 0 deletions include/vault/error.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_ERROR_HPP_
#define _CUTES_ERROR_HPP_
/**
* @file error.hpp
* @brief Unified exceptions
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <exception>
#include <QVariantMap>
Expand Down
7 changes: 7 additions & 0 deletions include/vault/os.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_OS_HPP_
#define _CUTES_OS_HPP_
/**
* @file os.hpp
* @brief Wrappers to support API looking familiar for python/shell developers
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "error.hpp"
#include "sys.hpp"
Expand Down
7 changes: 7 additions & 0 deletions include/vault/subprocess.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_SUBPROCESS_HPP_
#define _CUTES_SUBPROCESS_HPP_
/**
* @file subprocess.hpp
* @brief Subprocess execution API resembing std python lib
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <memory>

Expand Down
7 changes: 7 additions & 0 deletions include/vault/sys.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_SYS_HPP_
#define _CUTES_SYS_HPP_
/**
* @file sys.hpp
* @brief Command line parsing and generation etc.
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/util.hpp"

Expand Down
7 changes: 7 additions & 0 deletions include/vault/unit.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_UNIT_HPP_
#define _CUTES_UNIT_HPP_
/**
* @file unit.hpp
* @brief Vault unit option parsing and file export/import support
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <vault/config.hpp>
#include <memory>
Expand Down
7 changes: 7 additions & 0 deletions include/vault/util.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_UTIL_HPP_
#define _CUTES_UTIL_HPP_
/**
* @file util.hpp
* @brief Misc. helpful utilities
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "error.hpp"
#include <cor/util.hpp>
Expand Down
7 changes: 7 additions & 0 deletions include/vault/vault.hpp
@@ -1,5 +1,12 @@
#ifndef _VAULT_VAULT_HPP_
#define _VAULT_VAULT_HPP_
/**
* @file vault.hpp
* @brief Vault management API
* @author Giulio Camuffo <giulio.camuffo@jollamobile.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <functional>

Expand Down
8 changes: 8 additions & 0 deletions src/debug.cpp
@@ -1,3 +1,11 @@
/**
* @file debug.cpp
* @brief Debug tracing support
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/debug.hpp"
#include <mutex>
#include <string>
Expand Down
8 changes: 8 additions & 0 deletions src/json.cpp
@@ -1,3 +1,11 @@
/**
* @file json.cpp
* @brief Json access wrappers
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "json.hpp"
#include "vault/os.hpp"

Expand Down
7 changes: 7 additions & 0 deletions src/json.hpp
@@ -1,5 +1,12 @@
#ifndef _CUTES_JSON_HPP_
#define _CUTES_JSON_HPP_
/**
* @file json.hpp
* @brief Json access wrappers
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/os.hpp"

Expand Down
8 changes: 8 additions & 0 deletions src/os.cpp
@@ -1,3 +1,11 @@
/**
* @file os.cpp
* @brief Wrappers to support API looking familiar for python/shell developers
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/os.hpp"
#include "vault/util.hpp"
#include "vault/debug.hpp"
Expand Down
8 changes: 8 additions & 0 deletions src/subprocess.cpp
@@ -1,3 +1,11 @@
/**
* @file subprocess.cpp
* @brief Subprocess execution API resembing std python lib
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/subprocess.hpp"
#include "vault/error.hpp"
#include "vault/debug.hpp"
Expand Down
8 changes: 8 additions & 0 deletions src/sys.cpp
@@ -1,3 +1,11 @@
/**
* @file sys.cpp
* @brief Command line parsing and generation etc.
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/sys.hpp"

#include <QStringList>
Expand Down
8 changes: 8 additions & 0 deletions src/transfer.cpp
@@ -1,3 +1,11 @@
/**
* @file transfer.cpp
* @brief API to support storage transfer
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "transfer.hpp"

#include "vault/os.hpp"
Expand Down
7 changes: 7 additions & 0 deletions src/transfer.hpp
@@ -1,5 +1,12 @@
#ifndef _VAULT_TRANSFER_HPP_
#define _VAULT_TRANSFER_HPP_
/**
* @file transfer.hpp
* @brief API to support storage transfer
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/util.hpp"
#include "vault/subprocess.hpp"
Expand Down
8 changes: 8 additions & 0 deletions src/unit.cpp
@@ -1,3 +1,11 @@
/**
* @file unit.hpp
* @brief Vault unit option parsing and file export/import support
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <vault/unit.hpp>

#include "vault/util.hpp"
Expand Down
8 changes: 8 additions & 0 deletions src/util.cpp
@@ -1,3 +1,11 @@
/**
* @file util.cpp
* @brief Misc. helpful utilities
* @author Denis Zalevskiy <denis.zalevskiy@jolla.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include "vault/util.hpp"
#include "vault/debug.hpp"

Expand Down
7 changes: 7 additions & 0 deletions src/vault-cli.cpp
@@ -1,3 +1,10 @@
/**
* @file vault-cli.cpp
* @brief Vault command line tool
* @author Giulio Camuffo <giulio.camuffo@jollamobile.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <QCoreApplication>
#include <QCommandLineParser>
Expand Down
8 changes: 8 additions & 0 deletions src/vault.cpp
@@ -1,3 +1,11 @@
/**
* @file vault.cpp
* @brief Vault management API
* @author Giulio Camuffo <giulio.camuffo@jollamobile.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <vault/vault.hpp>

#include "vault/os.hpp"
Expand Down
7 changes: 7 additions & 0 deletions src/vault_config.cpp
@@ -1,3 +1,10 @@
/**
* @file config.cpp
* @brief Vault configuration
* @author Giulio Camuffo <giulio.camuffo@jollamobile.com>
* @copyright (C) 2014 Jolla Ltd.
* @par License: LGPL 2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
*/

#include <QDir>

Expand Down

0 comments on commit 387aee2

Please sign in to comment.