~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Source/cmVTKWrapPythonCommand.h

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-03-02 09:22:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050302092244-y6o9j8wr27vqcqvx
Tags: 2.0.5-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*=========================================================================
 
2
 
 
3
  Program:   CMake - Cross-Platform Makefile Generator
 
4
  Module:    $RCSfile: cmVTKWrapPythonCommand.h,v $
 
5
  Language:  C++
 
6
  Date:      $Date: 2004/02/22 18:14:59 $
 
7
  Version:   $Revision: 1.9 $
 
8
 
 
9
  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
 
10
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
 
11
 
 
12
     This software is distributed WITHOUT ANY WARRANTY; without even 
 
13
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
 
14
     PURPOSE.  See the above copyright notices for more information.
 
15
 
 
16
=========================================================================*/
1
17
#ifndef cmVTKWrapPythonCommand_h
2
18
#define cmVTKWrapPythonCommand_h
3
19
 
4
 
#include "cmStandardIncludes.h"
5
20
#include "cmCommand.h"
6
21
 
 
22
#include "cmSourceFile.h"
 
23
 
7
24
/** \class cmVTKWrapPythonCommand
8
25
 * \brief Create Python Language bindings for classes
9
26
 *
44
61
   */
45
62
  virtual const char* GetTerseDocumentation() 
46
63
    {
47
 
    return "Create Python Wrappers.";
 
64
    return "Deprecated.  For use only in VTK 4.0.";
48
65
    }
49
66
  
50
67
  /**
53
70
  virtual const char* GetFullDocumentation()
54
71
    {
55
72
    return
56
 
      "VTK_WRAP_PYTHON(resultingLibraryName SourceListName SourceLists ...)";
 
73
      "  VTK_WRAP_PYTHON(resultingLibraryName SourceListName\n"
 
74
      "                  class1 class2 ...)\n"
 
75
      "Create Python wrappers for VTK classes.";
57
76
    }
58
77
 
59
78
  /**