Last change
on this file since 1581:9bb83c7f479b was
1581:9bb83c7f479b,
checked in by Hegyi Péter, 20 years ago
|
There were bugs, created yesterday, and there is still one. (I hope only one :) )
|
File size:
1.1 KB
|
Rev | Line | |
---|
[1442] | 1 | // -*- C++ -*- // |
---|
| 2 | |
---|
| 3 | #ifndef ALL_INCLUDE_H |
---|
| 4 | #define ALL_INCLUDE_H |
---|
| 5 | |
---|
| 6 | #include <fstream> |
---|
| 7 | #include <iostream> |
---|
| 8 | |
---|
| 9 | #include <vector> |
---|
| 10 | |
---|
| 11 | #include <lemon/list_graph.h> |
---|
| 12 | #include <lemon/graph_reader.h> |
---|
| 13 | #include <lemon/graph_writer.h> |
---|
| 14 | #include <lemon/graph_utils.h> |
---|
| 15 | #include <lemon/maps.h> |
---|
| 16 | #include <lemon/error.h> |
---|
| 17 | #include <lemon/xy.h> |
---|
| 18 | |
---|
[1512] | 19 | enum {E_WIDTH, E_COLOR, E_TEXT, EDGE_PROPERTY_NUM}; // edge properties; |
---|
| 20 | enum {N_RADIUS, N_COLOR, N_TEXT, NODE_PROPERTY_NUM}; // node properties; |
---|
[1550] | 21 | enum {MOVE, CREATE_NODE, CREATE_EDGE, ERASER, EDGE_MAP_EDIT, NODE_MAP_EDIT, TOOL_NUM}; // tools; |
---|
[1442] | 22 | #define RANGE 3 |
---|
| 23 | #define WIN_WIDTH 900 |
---|
| 24 | #define WIN_HEIGHT 600 |
---|
[1581] | 25 | #define ALMOST_ONE 0.99999999999999 |
---|
[1442] | 26 | |
---|
| 27 | #ifndef MAIN_PART |
---|
[1512] | 28 | extern std::vector <std::string> edge_property_strings; |
---|
| 29 | extern std::vector <double> edge_property_defaults; |
---|
| 30 | extern std::vector <std::string> node_property_strings; |
---|
| 31 | extern std::vector <double> node_property_defaults; |
---|
[1442] | 32 | #endif //MAIN_PART |
---|
| 33 | |
---|
| 34 | using namespace lemon; |
---|
| 35 | |
---|
| 36 | typedef xy<double> Coordinates; |
---|
| 37 | typedef ListGraph Graph; |
---|
| 38 | typedef Graph::NodeMap<Coordinates> CoordinatesMap; |
---|
| 39 | typedef Graph::Node Node; |
---|
| 40 | typedef Graph::EdgeIt EdgeIt; |
---|
| 41 | typedef Graph::NodeIt NodeIt; |
---|
| 42 | |
---|
| 43 | #endif // ALL_INCLUDE_H |
---|
Note: See
TracBrowser
for help on using the repository browser.