libosmscout
1.1.1
Toggle main menu visibility
Loading...
Searching...
No Matches
libosmscout
include
osmscout
Path.h
Go to the documentation of this file.
1
#ifndef OSMSCOUT_PATH_H
2
#define OSMSCOUT_PATH_H
3
4
/*
5
This source is part of the libosmscout library
6
Copyright (C) 2012 Tim Teulings
7
8
This library is free software; you can redistribute it and/or
9
modify it under the terms of the GNU Lesser General Public
10
License as published by the Free Software Foundation; either
11
version 2.1 of the License, or (at your option) any later version.
12
13
This library is distributed in the hope that it will be useful,
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
Lesser General Public License for more details.
17
18
You should have received a copy of the GNU Lesser General Public
19
License along with this library; if not, write to the Free Software
20
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
*/
22
23
#include <
osmscout/lib/CoreImportExport.h
>
24
25
#include <
osmscout/OSMScoutTypes.h
>
26
27
#include <
osmscout/ObjectRef.h
>
28
29
namespace
osmscout
{
30
36
class
OSMSCOUT_API
Path
CLASS_FINAL
37
{
38
private
:
39
ObjectFileRef object;
40
size_t
targetNodeIndex;
41
bool
traversable;
42
43
public
:
44
Path
(
const
ObjectFileRef
& Object,
45
size_t
targetNodeIndex);
46
Path
(
const
ObjectFileRef
&
object
,
47
size_t
targetNodeIndex,
48
bool
traversable);
49
Path
(
const
Path
& other);
50
51
ObjectFileRef
GetObject
()
const
52
{
53
return
object;
54
}
55
56
size_t
GetTargetNodeIndex
()
const
57
{
58
return
targetNodeIndex;
59
}
60
61
bool
IsTraversable
()
const
62
{
63
return
traversable;
64
}
65
};
66
}
67
68
#endif
CoreImportExport.h
OSMSCOUT_API
#define OSMSCOUT_API
Definition
CoreImportExport.h:45
OSMScoutTypes.h
ObjectRef.h
osmscout::CLASS_FINAL
Definition
Area.h:88
osmscout::CLASS_FINAL::GetTargetNodeIndex
size_t GetTargetNodeIndex() const
Definition
Path.h:56
osmscout::CLASS_FINAL::Path
Path(const ObjectFileRef &Object, size_t targetNodeIndex)
osmscout::CLASS_FINAL::GetObject
ObjectFileRef GetObject() const
Definition
Path.h:51
osmscout::CLASS_FINAL::Path
Path(const ObjectFileRef &object, size_t targetNodeIndex, bool traversable)
osmscout::CLASS_FINAL::ObjectFileRef
ObjectFileRef()=default
osmscout::CLASS_FINAL::IsTraversable
bool IsTraversable() const
Definition
Path.h:61
osmscout::CLASS_FINAL::Path
Path(const Path &other)
osmscout
Definition
Area.h:39
Generated by
1.17.0