2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2002-09-24 05:37:14 +04:00
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2002-09-24 05:37:14 +04:00
|
|
|
|
|
|
|
#ifndef __nsSound_h__
|
|
|
|
#define __nsSound_h__
|
|
|
|
|
|
|
|
#include "nsISound.h"
|
|
|
|
#include "nsIStreamLoader.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2017-12-19 13:38:59 +03:00
|
|
|
class nsSound : public nsISound, public nsIStreamLoaderObserver {
|
|
|
|
public:
|
|
|
|
nsSound();
|
2002-09-24 05:37:14 +04:00
|
|
|
|
2007-04-16 02:22:58 +04:00
|
|
|
static void Shutdown();
|
2017-04-27 00:29:32 +03:00
|
|
|
static already_AddRefed<nsISound> GetInstance();
|
2007-04-16 02:22:58 +04:00
|
|
|
|
2002-09-24 05:37:14 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSISOUND
|
|
|
|
NS_DECL_NSISTREAMLOADEROBSERVER
|
|
|
|
|
|
|
|
private:
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~nsSound();
|
2002-09-24 05:37:14 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInited;
|
2002-09-24 05:37:14 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __nsSound_h__ */
|