Loading [MathJax]/jax/output/HTML-CSS/config.js
Version
nightly build
2.6.0 (latest)
2.5.0
2.4.0
2.3.2
2.3.1
2.3.0
Technische Universität Wien
Orientation and Processing of Airborne Laser Scanning data
Department of Geodesy and Geoinformation - Research Groups Photogrammetry and Remote Sensing
Main Page
Module List
Reference documentation
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
i
j
m
o
p
r
s
t
w
Variables
Typedefs
c
i
o
Enumerations
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Enumerator
a
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
u
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Typedefs
a
c
f
i
k
p
q
r
t
v
Enumerations
Enumerator
a
b
c
e
m
n
p
q
r
s
v
Examples
Video Tutorials
distroDM
c++_api
inc
DM
IText.hpp
1
#pragma once
2
3
#include "DM/config.hpp"
4
#include "DM/ObjectBase.hpp"
5
#include "DM/Handle.hpp"
6
7
DM_NAMESPACE_BEGIN
8
9
/// \brief Simple text object
10
/**
11
For transporting text (=strings) from inside the DM to the outside, handling the life time problem
12
*/
13
class
DM_API
IText
:
public
ObjectBase
14
{
15
public
:
16
static
IText
* New(
const
char
* msg);
17
18
protected
:
19
virtual
~
IText
() {}
20
21
public
:
22
virtual
const
char
* c_str()
const
= 0;
23
virtual
IText
&operator=(
const
char
*) = 0;
24
};
25
26
typedef
Handle<IText>
TextHandle
;
27
28
DM_NAMESPACE_END
DM::IText
Simple text object.
Definition:
IText.hpp:13
DM::Handle
Smart pointer class using reference counting with support for DM objects (see ObjectBase)
Definition:
Handle.hpp:75
DM::ObjectBase
Definition:
M/c++_api/inc/DM/ObjectBase.hpp:8