Fix crash on startup if an LV2 plugin has a bad .ttl file.
[ardour.git] / libs / glibmm2 / gio / src / fileattributeinfo.ccg
1 // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2
3 /* Copyright (C) 2007 The gtkmm Development Team
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library 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 GNU
13  * Library 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 library; if not, write to the Free
17  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #include <gio/gio.h>
21
22 namespace Gio
23 {
24
25 FileAttributeInfo::FileAttributeInfo(const GFileAttributeInfo* ginfo)
26   :
27   m_name(ginfo->name ? ginfo->name : ""),
28   m_type(static_cast<FileAttributeType>(ginfo->type)),
29   m_flags(static_cast<FileAttributeInfoFlags>(ginfo->flags))
30 {
31 }
32
33 FileAttributeInfo::FileAttributeInfo(const FileAttributeInfo& other)
34 {
35   *this = other;
36 }
37
38 FileAttributeInfo&
39 FileAttributeInfo::operator=(const FileAttributeInfo& other)
40 {
41   m_name = other.m_name;
42   m_type = other.m_type;
43   m_flags = other.m_flags;
44   return *this;
45 }
46
47 FileAttributeInfo::~FileAttributeInfo()
48 {
49 }
50
51 std::string
52 FileAttributeInfo::get_name() const
53 {
54   return m_name;
55 }
56
57 FileAttributeType
58 FileAttributeInfo::get_type() const
59 {
60   return m_type;
61 }
62
63 FileAttributeInfoFlags
64 FileAttributeInfo::get_flags() const
65 {
66   return m_flags;
67 }
68
69 } // namespace Gio
70