Update copyright notice and 80 column separators

This commit is contained in:
Vinnie Falco
2013-06-15 18:18:28 -07:00
parent 8a6ce5de68
commit 00a7cbf610
310 changed files with 1630 additions and 346 deletions

View File

@@ -1,3 +1,9 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#include "SqliteDatabase.h"
#include "sqlite3.h"

View File

@@ -1,3 +1,8 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#ifndef RIPPLE_SQLITEDATABASE_H
#define RIPPLE_SQLITEDATABASE_H

View File

@@ -1,8 +1,13 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#include "database.h"
#include <stdlib.h>
#include <string.h>
Database::Database (const char* host, const char* user, const char* pass) : mNumCol (0)
{
mDBPass = pass;

View File

@@ -1,3 +1,9 @@
//------------------------------------------------------------------------------
/*
Copyright (c) 2011-2013, OpenCoin, Inc.
*/
//==============================================================================
#ifndef __DATABASE__
#define __DATABASE__