Developer documentation | Axl-2.5.1

axlRendererDelegate.cpp
Go to the documentation of this file.
1 /* axlRendererDelegate.cpp ---
2  *
3  * Author: Meriadeg Perrinel
4  * Copyright (C) 2008 - Meriadeg Perrinel, Inria.
5  * Created: Tue Nov 9 16:58:59 2010 (+0100)
6  * Version: $Id$
7  * Last-Updated: Tue Nov 9 17:09:38 2010 (+0100)
8  * By: Meriadeg Perrinel
9  * Update #: 19
10  */
11 
12 /* Commentary:
13  *
14  */
15 
16 /* Change log:
17  *
18  */
19 
20 
21 /*=========================================================================
22 
23  Program: Visualization Toolkit
24  Module: axlRendererDelegate.cxx
25 
26  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
27  All rights reserved.
28  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
29 
30  This software is distributed WITHOUT ANY WARRANTY; without even
31  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
32  PURPOSE. See the above copyright notice for more information.
33 
34 =========================================================================*/
35 
36 #include "axlRendererDelegate.h"
37 
38 
40 {
41  this->Used=false;
42 }
43 
45 {
46 }
47 
48 void axlRendererDelegate::PrintSelf(ostream& os, vtkIndent indent)
49 {
50  this->Superclass::PrintSelf(os,indent);
51 
52  os << indent << "Used: ";
53  if(this->Used)
54  {
55  os<<"On";
56  }
57  else
58  {
59  os<<"Off";
60  }
61  os<<endl;
62 }
void PrintSelf(ostream &os, vtkIndent indent)