michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NS_SMILCOMPOSITORTABLE_H_ michael@0: #define NS_SMILCOMPOSITORTABLE_H_ michael@0: michael@0: #include "nsTHashtable.h" michael@0: michael@0: //---------------------------------------------------------------------- michael@0: // nsSMILCompositorTable : A hashmap of nsSMILCompositors michael@0: // michael@0: // This is just a forward-declaration because it is included in michael@0: // nsSMILAnimationController which is used in nsDocument. We don't want to michael@0: // expose all of nsSMILCompositor or otherwise any changes to it will mean the michael@0: // whole world will need to be rebuilt. michael@0: michael@0: class nsSMILCompositor; michael@0: typedef nsTHashtable nsSMILCompositorTable; michael@0: michael@0: #endif // NS_SMILCOMPOSITORTABLE_H_