fix merge issues with master
[ardour.git] / libs / pbd / pbd.cc
1 /*
2     Copyright (C) 2011 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <cstdlib>
22
23 #include <giomm.h>
24
25 #include <glibmm/thread.h>
26
27 #include "pbd/pbd.h"
28 #include "pbd/debug.h"
29 #include "pbd/id.h"
30 #include "pbd/enumwriter.h"
31
32 #include "i18n.h"
33
34 extern void setup_libpbd_enums ();
35
36 namespace {
37
38 static bool libpbd_initialized = false;
39
40 }
41
42 bool
43 PBD::init ()
44 {
45         if (libpbd_initialized) {
46                 return true;
47         }
48
49         if (!Glib::thread_supported()) {
50                 Glib::thread_init();
51         }
52
53         Gio::init ();
54
55         PBD::ID::init ();
56
57         setup_libpbd_enums ();
58
59         libpbd_initialized = true;
60         return true;
61 }
62
63 void
64 PBD::cleanup ()
65 {
66         EnumWriter::destroy ();
67 }