Adaptagrams
makepath.h
1 /*
2  * vim: ts=4 sw=4 et tw=0 wm=0
3  *
4  * libavoid - Fast, Incremental, Object-avoiding Line Router
5  *
6  * Copyright (C) 2004-2008 Monash University
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  * See the file LICENSE.LGPL distributed with the library.
13  *
14  * Licensees holding a valid commercial license may use this file in
15  * accordance with the commercial license agreement provided with the
16  * library.
17  *
18  * This library is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21  *
22  * Author(s): Michael Wybrow
23 */
24 
25 
26 #ifndef AVOID_MAKEPATH_H
27 #define AVOID_MAKEPATH_H
28 
29 
30 namespace Avoid {
31 
32 class ConnRef;
33 class AStarPathPrivate;
34 class ANode;
35 class VertInf;
36 
37 class AStarPath
38 {
39  public:
40  AStarPath();
41  ~AStarPath();
42  void search(ConnRef *lineRef, VertInf *src, VertInf *tar,
43  VertInf *start);
44  private:
45  AStarPathPrivate *m_private;
46 };
47 
48 }
49 
50 #endif
51 
52 
libavoid: Object-avoiding orthogonal and polyline connector routing library.
Definition: actioninfo.cpp:33