00001 // 00002 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Free Software 00003 // Foundation, Inc 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 #ifndef GNASH_COMPONENT_H 00020 #define GNASH_COMPONENT_H 00021 00022 #include "iGnashComponent.h" 00023 #include "nsStringAPI.h" 00024 00025 #define GNASH_COMPONENT_CONTRACTID "@getgnash.org/updates/GnashComponent;1" 00026 // 2b70f2b1-fc72-4734-bb81-4eb2a7713e49 00027 #define GNASH_COMPONENT_CID {0x2b70f2b1, 0xfc72, 0xbb81, { 0x4e, 0xb2, 0xa7, 0x71, 0x3e, 0x49 }} 00028 00029 class GnashComponent : public iGnashComponent 00030 { 00031 public: 00032 NS_DECL_ISUPPORTS 00033 NS_DECL_IGNASHCOMPONENT 00034 00035 GnashComponent(); 00036 // additional members 00037 virtual ~GnashComponent(); 00038 }; 00039 00040 #endif
1.7.1