KWWidgets
debian/tmp/usr/include/KWWidgets/vtkKWLoadSaveDialog.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Module: $RCSfile: vtkKWLoadSaveDialog.h,v $
4 
5  Copyright (c) Kitware, Inc.
6  All rights reserved.
7  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
8 
9  This software is distributed WITHOUT ANY WARRANTY; without even
10  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  PURPOSE. See the above copyright notice for more information.
12 
13 =========================================================================*/
14 // .NAME vtkKWLoadSaveDialog - dalog for loading or saving files
15 // .SECTION Description
16 // A dialog for loading or saving files. The file is returned through
17 // GetFile method.
18 
19 #ifndef __vtkKWLoadSaveDialog_h
20 #define __vtkKWLoadSaveDialog_h
21 
22 #include "vtkKWFileBrowserDialog.h"
23 
24 class vtkStringArray;
25 
27 {
28 public:
29  static vtkKWLoadSaveDialog* New();
31  void PrintSelf(ostream& os, vtkIndent indent);
32 
33 protected:
36 
37 private:
38  vtkKWLoadSaveDialog(const vtkKWLoadSaveDialog&); // Not implemented
39  void operator=(const vtkKWLoadSaveDialog&); // Not implemented
40 };
41 
42 
43 #endif
44 
45 
46