OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / include / vtk / vtkWin32PolyDataMapper2D.h
1 /*=========================================================================
2
3   Program:   Visualization Toolkit
4   Module:    $RCSfile: vtkWin32PolyDataMapper2D.h,v $
5   Language:  C++
6   Date:      $Date: 2002/02/01 06:39:58 $
7   Version:   $Revision: 1.1.1.1 $
8
9 Copyright (c) 1993-2001 Ken Martin, Will Schroeder, Bill Lorensen 
10 All rights reserved.
11
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14
15  * Redistributions of source code must retain the above copyright notice,
16    this list of conditions and the following disclaimer.
17
18  * Redistributions in binary form must reproduce the above copyright notice,
19    this list of conditions and the following disclaimer in the documentation
20    and/or other materials provided with the distribution.
21
22  * Neither name of Ken Martin, Will Schroeder, or Bill Lorensen nor the names
23    of any contributors may be used to endorse or promote products derived
24    from this software without specific prior written permission.
25
26  * Modified source versions must be plainly marked as such, and must not be
27    misrepresented as being the original software.
28
29 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
30 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR
33 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
40 =========================================================================*/
41 // .NAME vtkWin32PolyDataMapper2D - (obsolete) 2D PolyData support for windows
42 // .SECTION Description
43 // vtkWin32PolyDataMapper2D provides 2D PolyData annotation support for 
44 // vtk under windows.  Normally the user should use vtkPolyDataMapper2D 
45 // which in turn will use this class.
46
47 // .SECTION See Also
48 // vtkPolyDataMapper2D
49
50 #ifndef __vtkWin32PolyDataMapper2D_h
51 #define __vtkWin32PolyDataMapper2D_h
52
53 #include "vtkPolyDataMapper2D.h"
54
55 #ifndef VTK_REMOVE_LEGACY_CODE
56 class VTK_EXPORT vtkWin32PolyDataMapper2D : public vtkPolyDataMapper2D
57 {
58 public:
59   vtkTypeMacro(vtkWin32PolyDataMapper2D,vtkPolyDataMapper2D);
60   static vtkWin32PolyDataMapper2D *New();
61
62   // Description:
63   // Actually draw the poly data.
64   virtual void RenderOverlay(vtkViewport* viewport, vtkActor2D* actor);
65
66 protected:
67   vtkWin32PolyDataMapper2D() {};
68   ~vtkWin32PolyDataMapper2D() {};
69   vtkWin32PolyDataMapper2D(const vtkWin32PolyDataMapper2D&) {};
70   void operator=(const vtkWin32PolyDataMapper2D&) {};
71   
72 };
73 #endif
74
75 #endif
76