2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2009-01-15 07:38:07 +03:00
|
|
|
|
2019-01-25 11:16:09 +03:00
|
|
|
#ifndef mozilla_SMILCompositorTable_h
|
|
|
|
#define mozilla_SMILCompositorTable_h
|
2009-01-15 07:38:07 +03:00
|
|
|
|
|
|
|
#include "nsTHashtable.h"
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2019-01-01 12:16:21 +03:00
|
|
|
// SMILCompositorTable : A hashmap of SMILCompositors
|
2009-01-15 07:38:07 +03:00
|
|
|
//
|
|
|
|
// This is just a forward-declaration because it is included in
|
2019-01-02 16:05:23 +03:00
|
|
|
// SMILAnimationController which is used in Document. We don't want to
|
2019-01-01 12:16:21 +03:00
|
|
|
// expose all of SMILCompositor or otherwise any changes to it will mean the
|
2009-01-15 07:38:07 +03:00
|
|
|
// whole world will need to be rebuilt.
|
|
|
|
|
2019-01-01 12:16:21 +03:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
class SMILCompositor;
|
|
|
|
|
|
|
|
typedef nsTHashtable<SMILCompositor> SMILCompositorTable;
|
|
|
|
|
|
|
|
} // namespace mozilla
|
2009-01-15 07:38:07 +03:00
|
|
|
|
2019-01-25 11:16:09 +03:00
|
|
|
#endif // mozilla_SMILCompositorTable_h
|