COVISE Core
coImageTEMPL.h
Go to the documentation of this file.
1/* This file is part of COVISE.
2
3 You can use it under the terms of the GNU Lesser General Public License
4 version 2.1 or later, see lgpl-2.1.txt.
5
6 * License: LGPL 2+ */
7
8#ifndef _CO_IMAGETEMPL_H_
9#define _CO_IMAGETEMPL_H_
10// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
11// CLASS coImageTEMPL
12//
13// Initial version: 2004-04-27 [we]
14// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
15// (C) 2001 by VirCinity IT Consulting
16// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17// Changes:
18//
19
20#include "coImageImpl.h"
21
26namespace covise
27{
28
30{
31public:
32 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33 // ++ Constructors / Destructor
34 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
35
37 coImageTEMPL(const char *filename);
38
40 virtual ~coImageTEMPL();
41
42 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
43 // ++ Operations
44 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
45
47 virtual unsigned char *getBitmap(int frameno = 0);
48
49 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
50 // ++ Attribute request/set functions
51 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
52
53protected:
54 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
55 // ++ Attributes
56 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
58private:
59 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
60 // ++ Internally used functions
61 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
62
63 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
64 // ++ prevent auto-generated bit copy routines by default
65 // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
66
69
72
75};
76}
77#endif
list of all chemical elements
Definition: coConfig.h:27
Definition: coImageImpl.h:30
Definition: coImageTEMPL.h:30
coImageTEMPL()
Default constructor: NOT IMPLEMENTED, checked by assert.
Definition: coImageTEMPL.cpp:107
virtual unsigned char * getBitmap(int frameno=0)
get pointer to internal data
Definition: coImageTEMPL.cpp:73
coImageTEMPL & operator=(const coImageTEMPL &)
Assignment operator: NOT IMPLEMENTED, checked by assert.
Definition: coImageTEMPL.cpp:100
virtual ~coImageTEMPL()
Destructor : virtual in case we derive objects.
Definition: coImageTEMPL.cpp:62