~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/utilities/cameragui/gpiteminfo.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream) (37 hardy)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-1bw3w3nrsso7yj4z
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ============================================================
2
 
 * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
3
 
 * Date  : 2004-09-19
4
 
 * Description : 
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2004-09-19
 
7
 * Description : camera item info container
5
8
 * 
6
 
 * Copyright 2004 by Renchi Raju
7
 
 
 
9
 * Copyright (C) 2004-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
 
10
 * Copyright (C) 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
11
 *
8
12
 * This program is free software; you can redistribute it
9
13
 * and/or modify it under the terms of the GNU General
10
14
 * Public License as published by the Free Software Foundation;
18
22
 * 
19
23
 * ============================================================ */
20
24
 
 
25
// Qt includes.
 
26
 
21
27
#include <qdatastream.h>
22
28
 
 
29
// Local includes.
 
30
 
23
31
#include "gpiteminfo.h"
24
32
 
 
33
namespace Digikam
 
34
{
 
35
 
25
36
QDataStream& operator<<( QDataStream& ds, const GPItemInfo& info)
26
37
{
27
38
    ds << info.name;
53
64
 
54
65
    return ds;
55
66
}
 
67
 
 
68
}  // namespace Digikam