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
distro
c++_api
inc
opals
ZColorLegend.hpp
1
#pragma once
2
3
#include "opals/config.hpp"
4
#include "opals/Path.hpp"
5
6
namespace
opals
{
7
8
/// Class describing the legend parameter
9
class
OPALS_API
ZColorLegend
10
{
11
public
:
12
ZColorLegend
() { state =
true
; fileName =
""
; };
13
virtual
~
ZColorLegend
() {};
14
15
bool
getState()
const
{
return
state; };
16
void
setState(
const
bool
st ) { state = st; };
17
18
opals::Path
getFileName()
const
{
return
state ? fileName :
""
; };
19
void
setFileName(
const
opals::Path
& file ) { fileName = file; state =
true
; };
20
21
private
:
22
bool
state;
23
opals::Path
fileName;
24
};
25
}
opals::Path
A file/directory path.
Definition:
Path.hpp:26
opals
Contains the public interface of OPALS.
Definition:
AbsValueOrQuantile.hpp:8
opals::ZColorLegend
Class describing the legend parameter
Definition:
ZColorLegend.hpp:9