Merged revisions 6293,6296-6306,6308 via svnmerge from
[ardour.git] / libs / gtkmm2 / gdk / src / pixbufformat.ccg
1 // -*- c++ -*-
2 /* $Id: pixbufformat.ccg,v 1.2 2003/11/22 18:58:20 murrayc Exp $ */
3
4 /* Copyright (C) 2002 The gtkmm Development Team
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 #include <glibmm/utility.h>
22 #include <gdk-pixbuf/gdk-pixbuf.h>
23
24 namespace Gdk
25 {
26
27 PixbufFormat::PixbufFormat()
28 : gobject_ (0)
29 {}
30
31 PixbufFormat::PixbufFormat(const GdkPixbufFormat* gobject)
32 : gobject_ (gobject)
33 {}
34
35 PixbufFormat::~PixbufFormat()
36 {
37   //We don't free anything because we did not take ownership of the underlying C instance
38   //(because we can't.)
39 }
40
41 PixbufFormat::PixbufFormat(const PixbufFormat& src)
42 : gobject_(src.gobject_)
43 {
44 }
45
46 PixbufFormat& PixbufFormat::operator=(const PixbufFormat& src)
47 {
48   gobject_ = src.gobject_;
49   return *this;
50 }
51
52
53
54
55
56
57 } // namespace Gdk
58