зеркало из https://github.com/mozilla/pjs.git
17 строки
280 B
C
17 строки
280 B
C
|
#ifndef GECKOWINDOWCREATOR_H
|
||
|
#define GECKOWINDOWCREATOR_H
|
||
|
|
||
|
#include "nsIWindowCreator.h"
|
||
|
|
||
|
class GeckoWindowCreator :
|
||
|
public nsIWindowCreator
|
||
|
{
|
||
|
public:
|
||
|
GeckoWindowCreator();
|
||
|
virtual ~GeckoWindowCreator();
|
||
|
|
||
|
NS_DECL_ISUPPORTS
|
||
|
NS_DECL_NSIWINDOWCREATOR
|
||
|
};
|
||
|
|
||
|
#endif
|