#include <tags.h>
Collaboration diagram for dbase_node:

Definition at line 53 of file tags.h.
Public Member Functions | |
| dbase_node (double x_min, double x_max, double y_min, double y_max) | |
Data Fields | |
| dbase_node * | list_node_ [NUM_RECTANGLES] |
| tag * | tags_list_ |
| double | x_max_ |
| double | x_min_ |
| double | y_max_ |
| double | y_min_ |
|
||||||||||||||||||||
|
Definition at line 55 of file tags.h. References list_node_, NUM_RECTANGLES, tags_list_, x_max_, x_min_, y_max_, and y_min_. 00055 { 00056 assert ((x_min <= x_max) && (y_min <= y_max)); 00057 x_min_ = x_min; 00058 x_max_ = x_max; 00059 y_min_ = y_min; 00060 y_max_ = y_max; 00061 tags_list_ = NULL; 00062 00063 for(int i = 0; i < NUM_RECTANGLES; ++i) { 00064 list_node_[i] = NULL; 00065 } 00066 00067 };
|
|
|
Definition at line 75 of file tags.h. Referenced by tags_database::Addtag(), tags_database::create_tags_database(), dbase_node(), tags_database::Deletetag(), and tags_database::search_tags_dbase(). |
|
|
Definition at line 77 of file tags.h. Referenced by dbase_node(), and tags_database::search_tags_dbase(). |
|
|
Definition at line 70 of file tags.h. Referenced by tags_database::create_tags_database(), and dbase_node(). |
|
|
Definition at line 67 of file tags.h. Referenced by tags_database::create_tags_database(), and dbase_node(). |
|
|
Definition at line 72 of file tags.h. Referenced by tags_database::create_tags_database(), and dbase_node(). |
|
|
Definition at line 71 of file tags.h. Referenced by tags_database::create_tags_database(), and dbase_node(). |
1.4.6