libosmscout  1.1.1
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 
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  inline ObjectFileRef GetObject() const
52  {
53  return object;
54  }
55 
56  inline size_t GetTargetNodeIndex() const
57  {
58  return targetNodeIndex;
59  }
60 
61  inline bool IsTraversable() const
62  {
63  return traversable;
64  }
65  };
66 }
67 
68 #endif
bool IsTraversable() const
Definition: Path.h:61
Definition: Area.h:38
#define CLASS_FINAL
Definition: Compiler.h:26
#define OSMSCOUT_API
Definition: CoreImportExport.h:45
ObjectFileRef GetObject() const
Definition: Path.h:51
size_t GetTargetNodeIndex() const
Definition: Path.h:56