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

« back to all changes in this revision

Viewing changes to Source/cmVTKWrapTclCommand.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: cmVTKWrapTclCommand.h,v $
 
5
  Language:  C++
 
6
  Date:      $Date: 2004/02/22 18:14:59 $
 
7
  Version:   $Revision: 1.10 $
 
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 cmVTKWrapTclCommand_h
2
18
#define cmVTKWrapTclCommand_h
3
19
 
4
 
#include "cmStandardIncludes.h"
5
20
#include "cmCommand.h"
6
21
 
 
22
#include "cmSourceFile.h"
 
23
 
7
24
/** \class cmVTKWrapTclCommand
8
25
 * \brief Create Tcl Wrappers for VTK classes.
9
26
 *
45
62
   */
46
63
  virtual const char* GetTerseDocumentation() 
47
64
    {
48
 
    return "Create Tcl Wrappers for VTK classes.";
 
65
    return "Deprecated.  For use only in VTK 4.0.";
49
66
    }
50
67
  
51
68
  /**
54
71
  virtual const char* GetFullDocumentation()
55
72
    {
56
73
    return
57
 
      "VTK_WRAP_TCL(resultingLibraryName [SOURCES] SourceListName SourceLists ... [COMMANDS CommandName1 CommandName2 ...])";
 
74
      "  VTK_WRAP_TCL(resultingLibraryName [SOURCES]\n"
 
75
      "               SourceListName class1 class2 ...\n"
 
76
      "               [COMMANDS CommandName1 CommandName2 ...])\n"
 
77
      "Create Tcl wrappers for VTK classes.";
58
78
    }
59
79
 
60
80
  /**