]>
Commit | Line | Data |
---|---|---|
505710ca KB |
1 | /**************************************************************************** |
2 | * | |
3 | * wxWindows HTML Applet Package | |
4 | * | |
5 | * Copyright (C) 1991-2001 SciTech Software, Inc. | |
6 | * All rights reserved. | |
7 | * | |
8 | * ======================================================================== | |
9 | * | |
10 | * The contents of this file are subject to the wxWindows License | |
11 | * Version 3.0 (the "License"); you may not use this file except in | |
12 | * compliance with the License. You may obtain a copy of the License at | |
13 | * http://www.wxwindows.org/licence3.txt | |
14 | * | |
15 | * Software distributed under the License is distributed on an | |
16 | * "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or | |
17 | * implied. See the License for the specific language governing | |
18 | * rights and limitations under the License. | |
19 | * | |
20 | * ======================================================================== | |
21 | * | |
22 | * Language: ANSI C++ | |
23 | * Environment: Any | |
24 | * | |
25 | * Description: Header file for the wxQlet class | |
26 | * | |
27 | ****************************************************************************/ | |
28 | ||
29 | #ifndef __WX_PLUGIN_H | |
30 | #define __WX_PLUGIN_H | |
31 | ||
32 | // Forward declaration | |
33 | class wxHtmlAppletWindow; | |
34 | ||
35 | /*--------------------------- Class Definitions ---------------------------*/ | |
36 | ||
37 | /**************************************************************************** | |
38 | REMARKS: | |
39 | Defines the abstract base class for wxQlet objects. | |
40 | ****************************************************************************/ | |
41 | class wxPlugIn : public wxObject { | |
42 | private: | |
43 | DECLARE_ABSTRACT_CLASS(wxPlugIn); | |
44 | ||
45 | wxHtmlAppletWindow *m_parent; | |
46 | public: | |
47 | // Constructor (called during dynamic creation) | |
48 | wxPlugIn() { m_parent = NULL; }; | |
49 | ||
50 | // Psuedo virtual constructor | |
51 | virtual bool Create(wxHtmlAppletWindow *parent); | |
52 | ||
53 | // Virtual destructor | |
54 | virtual ~wxPlugIn(); | |
55 | }; | |
56 | #endif // __WX_PLUGIN_H | |
57 |