~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to server/src/storage/schematypes.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-11 17:38:58 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20131111173858-kltz6s4ebjishfej
Tags: 1.10.80-0ubuntu1
* New upstream release
 - Update install files
 - Update disable_dbus_requiring_tests.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2006 by Tobias Koenig <tokoe@kde.org>                   *
 
3
 *   Copyright (C) 2013 by Volker Krause <vkrause@kde.org>                 *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU Library General Public License as       *
 
7
 *   published by the Free Software Foundation; either version 2 of the    *
 
8
 *   License, or (at your option) any later version.                       *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU Library General Public     *
 
16
 *   License along with this program; if not, write to the                 *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
 
19
 ***************************************************************************/
 
20
 
 
21
#include "schematypes.h"
 
22
 
 
23
#include <boost/bind.hpp>
 
24
#include <algorithm>
 
25
 
 
26
ColumnDescription::ColumnDescription()
 
27
  : size( -1 )
 
28
  , allowNull( true )
 
29
  , isAutoIncrement( false )
 
30
  , isPrimaryKey( false )
 
31
  , isUnique( false )
 
32
  , onUpdate( Cascade )
 
33
  , onDelete( Cascade )
 
34
{
 
35
}
 
36
 
 
37
IndexDescription::IndexDescription()
 
38
  : isUnique( false )
 
39
{
 
40
}
 
41
 
 
42
DataDescription::DataDescription()
 
43
{
 
44
}
 
45
 
 
46
TableDescription::TableDescription()
 
47
{
 
48
}
 
49
 
 
50
int TableDescription::primaryKeyColumnCount() const
 
51
{
 
52
  return std::count_if( columns.constBegin(), columns.constEnd(), boost::bind<bool>( &ColumnDescription::isPrimaryKey, _1 ) );
 
53
}
 
54
 
 
55
RelationDescription::RelationDescription()
 
56
{
 
57
}