libbbb
1.2.1
Groups common code used in some applications and libraries.
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
amorph.h
Go to the documentation of this file.
1
/* ========================================================================= */
2
/* ------------------------------------------------------------------------- */
/*
12
13
14
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15
Please read COPYING and README files in root folder
16
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17
*/
18
/* ------------------------------------------------------------------------- */
19
/* ========================================================================= */
20
#ifndef __AMORPH_INC__
21
#define __AMORPH_INC__
22
//
23
//
24
//
25
//
26
/* INCLUDES ------------------------------------------------------------ */
27
28
#include <libbbb/libbbb.h>
29
30
/* INCLUDES ============================================================ */
31
//
32
//
33
//
34
//
35
/* DEFINITIONS --------------------------------------------------------- */
36
40
union
Amorph
{
41
void
* p_;
42
quint64 i_;
43
double
d_;
44
45
Amorph
()
46
{ i_ = 0; }
47
Amorph
(
void
*p)
48
{ p_ = p; }
49
Amorph
(quint64 i)
50
{ i_ = i; }
51
Amorph
(
double
d)
52
{ d_ = d; }
53
54
};
55
56
57
/* DEFINITIONS ========================================================= */
58
//
59
//
60
//
61
//
62
/* DATA ---------------------------------------------------------------- */
63
64
/* DATA ================================================================ */
65
//
66
//
67
//
68
//
69
/* FUNCTIONS ----------------------------------------------------------- */
70
71
/* FUNCTIONS =========================================================== */
72
//
73
//
74
//
75
//
76
77
#endif // __AMORPH_INC__
78
/* ------------------------------------------------------------------------- */
79
/* ========================================================================= */
src
templates
amorph.h
Generated on Thu Aug 8 2013 20:10:33 for libbbb by
1.8.3.1