]>
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: Main wxPlugIn class implementation | |
26 | * | |
27 | ****************************************************************************/ | |
28 | ||
29 | // For compilers that support precompilation | |
30 | #include "wx/wxprec.h" | |
31 | ||
32 | // Include private headers | |
33 | #include "wx/applet/plugin.h" | |
34 | #include "wx/applet/window.h" | |
35 | ||
36 | /*------------------------- Implementation --------------------------------*/ | |
37 | ||
38 | // Implement the abstract class functions | |
39 | IMPLEMENT_ABSTRACT_CLASS(wxPlugIn, wxObject); | |
40 | ||
41 | /**************************************************************************** | |
42 | REMARKS: | |
43 | Psuedo virtual constructor for the wxPlugIn class. | |
44 | ****************************************************************************/ | |
45 | bool wxPlugIn::Create( | |
46 | wxHtmlAppletWindow *parent) | |
47 | { | |
48 | m_parent = parent; | |
49 | return true; | |
50 | } | |
51 | ||
52 | /**************************************************************************** | |
53 | REMARKS: | |
54 | Destructor for the wxPlugIn class. | |
55 | ****************************************************************************/ | |
56 | wxPlugIn::~wxPlugIn() | |
57 | { | |
58 | } | |
59 | ||
60 |