Go to the documentation of this file.00001
00012 #ifndef LGL_QUADTREEMATRIX_HPP
00013 #define LGL_QUADTREEMATRIX_HPP
00014
00015 #include <iostream>
00016
00017 #include <list>
00018 #include <vector>
00019
00020 #include <lgl/FlexGrid.hpp>
00021
00022 namespace jafar {
00023 namespace lgl {
00028 class QuadMat {
00029 public:
00031 typedef FlexGrid<bool> mat_t;
00032 mat_t mat;
00033 QuadMat(ssize_t xsize, ssize_t ysize);
00034 ~QuadMat();
00035 ssize_t nbLeaves();
00036 };
00037 }
00038 }
00039
00040 #endif