~ubuntu-branches/ubuntu/hardy/libterralib/hardy

« back to all changes in this revision

Viewing changes to src/terralib/application/qt/resultVisual.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-25 22:32:59 UTC
  • Revision ID: james.westby@ubuntu.com-20051125223259-3zubal8ux4ki4fjg
Tags: upstream-3.0.3b2
Import upstream version 3.0.3b2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************************************
 
2
TerraView - visualization and exploration of geographical databases
 
3
using TerraLib.
 
4
Copyright � 2001-2004 INPE and Tecgraf/PUC-Rio.
 
5
This file is part of TerraView. TerraView is free software; you can redistribute it 
 
6
and/or modify it under the terms of the GNU General Public License as published by
 
7
the Free Software Foundation; either version 2 of the License, or
 
8
(at your option) any later version.
 
9
 
 
10
You should have received a copy of the GNU General Public License
 
11
along with TerraView.
 
12
The authors reassure the license terms regarding the warranties.
 
13
They specifically disclaim any warranties, including, but not limited to,
 
14
the implied warranties of merchantability and fitness for a particular purpose.
 
15
The software provided hereunder is on an "as is" basis, and the authors have no
 
16
obligation to provide maintenance, support, updates, enhancements, or modifications.
 
17
In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct,
 
18
indirect, special, incidental, or consequential damages arising out of the use of
 
19
this program and its documentation.
 
20
*************************************************************************************/
 
21
 
 
22
#ifndef RESULTVISUAL_H
 
23
#define RESULTVISUAL_H
 
24
 
 
25
 
 
26
#include <qwidget.h>
 
27
 
 
28
class ResultVisual : public QWidget
 
29
{
 
30
public:
 
31
        ResultVisual(QWidget *parent=0, const char *name=0)
 
32
                :QWidget(parent,name) {}
 
33
 
 
34
        ~ResultVisual() {}
 
35
};
 
36
 
 
37
#endif