vtkSMPropertyInternals.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMPropertyInternals.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 
16 #ifndef vtkSMPropertyInternals_h
17 #define vtkSMPropertyInternals_h
18 
19 #include "vtkSMDomain.h"
20 #include "vtkSMProperty.h"
21 #include "vtkSmartPointer.h"
22 #include "vtkWeakPointer.h"
23 
24 #include <map>
25 #include <vector>
26 
28 {
29  typedef std::map<std::string, vtkSmartPointer<vtkSMDomain> > DomainMap;
30  DomainMap Domains;
31 
32  typedef std::vector<vtkSmartPointer<vtkSMDomain> > DependentsVector;
33  DependentsVector Dependents;
34 
35  // Only one source allowed for links
37 };
38 
39 #endif
40 
41 // VTK-HeaderTest-Exclude: vtkSMPropertyInternals.h
vtkWeakPointer< vtkSMProperty > LinkSourceProperty
std::vector< vtkSmartPointer< vtkSMDomain > > DependentsVector
std::map< std::string, vtkSmartPointer< vtkSMDomain > > DomainMap