blob: fe8236183454f9dc6de0ecc9cdc96c86df0913ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/*
**************************************************************************
description
--------------------
copyright : (C) 2003 by Andreas Zehender
email : zehender@kde.org
**************************************************************************
**************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
**************************************************************************/
#ifndef PMPOVRAY_FORMAT_H
#define PMPOVRAY_FORMAT_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "pmiomanager.h"
#include "pmoutputdevice.h"
typedef void ( *PMPovraySerializeMethod ) ( const PMObject*, const PMMetaObject*,
PMOutputDevice* );
/**
* Helper class for @ref PMOutputDevice and @ref PMPovrayFormatBase
*/
class PMPovraySerializeMethodInfo
{
public:
PMPovraySerializeMethodInfo( )
{
m_method = 0;
}
PMPovraySerializeMethodInfo( PMPovraySerializeMethod m )
{
m_method = m;
}
PMPovraySerializeMethod method( ) const { return m_method; }
void call( const PMObject* o, const PMMetaObject* mo, PMOutputDevice* ser ) const
{
if( m_method )
m_method( o, mo, ser );
}
private:
PMPovraySerializeMethod m_method;
};
/**
* Base class for all POV-Ray formats which use a PMOutputDevice
* for serialization.
*
* Plugins can register new serialization methods with @ref registerMethod
*/
class PMPovrayFormat : public PMIOFormat
{
public:
/**
* Default constructor
*/
PMPovrayFormat( );
/**
* Destructor
*/
virtual ~PMPovrayFormat( );
/**
* Registers the serialization method for the class className
*/
void registerMethod( const TQString& className, PMPovraySerializeMethod method );
/**
* Removes a registered serialization method
*/
void removeMethod( const TQString& className );
/**
* Returns the serialization methods info for the given object type
* or 0 if there is none.
*/
const PMPovraySerializeMethodInfo* serializationMethod(
const TQString& className );
private:
/**
* Dict class name -> serialization method
*/
TQDict<PMPovraySerializeMethodInfo> m_methodDict;
};
#endif
|