root/branches/Carsten_PtrWork2/Tools/osgBench/Image.h

Revision 213, 3.5 kB (checked in by dirk, 2 years ago)

Added simple benchmarking toolkit. Not for permanent use, just for now.

Line 
1 /*---------------------------------------------------------------------------*\
2  *                                OpenSG                                     *
3  *                                                                           *
4  *                                                                           *
5  *             Copyright (C) 2000-2002 by the OpenSG Forum                   *
6  *                                                                           *
7  *                            www.opensg.org                                 *
8  *                                                                           *
9  *   contact: dirk@opensg.org, gerrit.voss@vossg.org, jbehr@zgdv.de          *
10  *                                                                           *
11 \*---------------------------------------------------------------------------*/
12 /*---------------------------------------------------------------------------*\
13  *                                License                                    *
14  *                                                                           *
15  * This library is free software; you can redistribute it and/or modify it   *
16  * under the terms of the GNU Library General Public License as published    *
17  * by the Free Software Foundation, version 2.                               *
18  *                                                                           *
19  * This library is distributed in the hope that it will be useful, but       *
20  * WITHOUT ANY WARRANTY; without even the implied warranty of                *
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU         *
22  * Library General Public License for more details.                          *
23  *                                                                           *
24  * You should have received a copy of the GNU Library General Public         *
25  * License along with this library; if not, write to the Free Software       *
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                 *
27  *                                                                           *
28 \*---------------------------------------------------------------------------*/
29 /*---------------------------------------------------------------------------*\
30  *                                Changes                                    *
31  *                                                                           *
32  *                                                                           *
33  *                                                                           *
34  *                                                                           *
35  *                                                                           *
36  *                                                                           *
37 \*---------------------------------------------------------------------------*/
38
39 #ifndef _IMAGE_H_
40 #define _IMAGE_H_
41 #ifdef __sgi
42 #pragma once
43 #endif
44
45 #include <OpenSG/OSGConfig.h>
46 #include <OpenSG/OSGImage.h>
47
48
49 class Image
50 {
51      /*==========================  PUBLIC  =================================*/
52   public:
53  
54     Image(void);
55  
56     Image(const Image &copy);
57  
58     Image(OSG::ImagePtr image);
59    
60     ~Image();
61    
62     void write(std::string filename);
63    
64     Image clone(void);
65    
66     void diff(Image img);
67    
68     /*=========================  PROTECTED  ===============================*/
69   protected:
70
71     OSG::ImageRefPtr _image;
72
73     /*==========================  PRIVATE  ================================*/
74   private:
75
76 };
77
78 #endif
Note: See TracBrowser for help on using the browser.