~ubuntu-branches/ubuntu/karmic/gnash/karmic

« back to all changes in this revision

Viewing changes to extensions/dbus/dbus_ext.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2008-03-05 18:09:23 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080305180923-w5qdihnavdgn3k6x
Tags: 0.8.2-0ubuntu1
* package 0.8.2 release (Freeze exception, LP: #195443)
* drop pkglibs that don't exist anymore from gnash-common.install
  and add new libgnashmedia-*.so to package
  - update debian/gnash-common.install
* update binaries installed by gnash-tools.install: drop usr/bin/gparser
  and add usr/bin/soldumper as well as usr/bin/dumpshm
  - update debian/gnash-tools.install
* disable tests by configure flags and drop obsolete disable-testsuite
  patch
  - update debian/rules
  - drop debian/patches/disable-testsuite
  - update debian/patches/series
* run make install-plugins to install the plugins and use /usr/lib/gnash
  as --with-npapi-plugindir= in during configure
  - update debian/rules
* unfold Build-Depends: to multi-line layout to improve readability/
  diffability
  - update debian/control
* support firefox 3 and xulrunner 1.9 by setting gnash plugin up as
  xulrunner-addons alternative
  - update debian/mozilla-plugin-gnash.postinst

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
//   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
 
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 3 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#ifndef __DBUS_PLUGIN_H__
 
19
#define __DBUS_PLUGIN_H__
 
20
 
 
21
#ifdef HAVE_CONFIG_H
 
22
#include "config.h"
 
23
#endif
 
24
 
 
25
#include <memory> // for auto_ptr
 
26
#include "as_object.h"
 
27
 
 
28
namespace gnash
 
29
{
 
30
 
 
31
class Dbus {
 
32
public:
 
33
    Dbus();
 
34
    ~Dbus();
 
35
    void setSocketName(const char *sock);
 
36
private:
 
37
    const char *_name;
 
38
};
 
39
 
 
40
extern "C" {
 
41
    void dbus_class_init(as_object &obj);  
 
42
    /// Return an  instance
 
43
}
 
44
 
 
45
std::auto_ptr<as_object> init_dbus_instance();
 
46
 
 
47
} // end of gnash namespace
 
48
 
 
49
// __DBUS_PLUGIN_H__
 
50
#endif
 
51
 
 
52
// Local Variables:
 
53
// mode: C++
 
54
// indent-tabs-mode: t
 
55
// End: