vtkProcessModuleInternals.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: $RCSfile$
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 #ifndef vtkProcessModuleInternals_h
16 #define vtkProcessModuleInternals_h
17 
18 #include "vtkSession.h"
19 #include "vtkSmartPointer.h"
20 #include "vtkWeakPointer.h"
21 
22 #include <map>
23 #include <vector>
24 
26 {
27 public:
28  typedef std::map<vtkIdType, vtkSmartPointer<vtkSession> > MapOfSessions;
29  MapOfSessions Sessions;
30 
31  typedef std::vector<vtkWeakPointer<vtkSession> > ActiveSessionStackType;
32  ActiveSessionStackType ActiveSessionStack;
33 };
34 
35 #endif
36 
37 // VTK-HeaderTest-Exclude: vtkProcessModuleInternals.h
ActiveSessionStackType ActiveSessionStack
std::vector< vtkWeakPointer< vtkSession > > ActiveSessionStackType
std::map< vtkIdType, vtkSmartPointer< vtkSession > > MapOfSessions