~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/core/spatialindex/spatialindex/SpatialIndexImpl.cc

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Spatial Index Library
 
2
//
 
3
// Copyright (C) 2002 Navel Ltd.
 
4
//
 
5
// This library is free software; you can redistribute it and/or
 
6
// modify it under the terms of the GNU Lesser General Public
 
7
// License as published by the Free Software Foundation; either
 
8
// version 2.1 of the License, or (at your option) any later version.
 
9
//
 
10
// This library is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
// Lesser General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU Lesser General Public
 
16
// License along with this library; if not, write to the Free Software
 
17
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
//
 
19
//  Email:
 
20
//    mhadji@gmail.com
 
21
 
 
22
#include "SpatialIndexImpl.h"
 
23
 
 
24
#include "../rtree/RTree.h"
 
25
//#include "../mvrtree/MVRTree.h"
 
26
//#include "../tprtree/TPRTree.h"
 
27
#include "qgslogger.h"
 
28
 
 
29
using namespace SpatialIndex;
 
30
 
 
31
//const std::string VERSION = "0.82b";
 
32
//const std::string DATE = "March 16th 2005";
 
33
 
 
34
std::ostream& SpatialIndex::operator<<( std::ostream& os, const ISpatialIndex& i )
 
35
{
 
36
  const SpatialIndex::RTree::RTree* pRTree = dynamic_cast<const SpatialIndex::RTree::RTree*>( &i );
 
37
  if ( pRTree != 0 )
 
38
  {
 
39
    os << *pRTree;
 
40
    return os;
 
41
  }
 
42
  QgsDebugMsg( QString( "%1%2" ).arg( "ISpatialIndex operator).arg(: Not implemented yet for this index type." ) );
 
43
  return os;
 
44
}
 
45
 
 
46
std::ostream& SpatialIndex::operator<<( std::ostream& os, const IStatistics& s )
 
47
{
 
48
  using std::endl;
 
49
 
 
50
  const SpatialIndex::RTree::Statistics* pRTreeStats = dynamic_cast<const SpatialIndex::RTree::Statistics*>( &s );
 
51
  if ( pRTreeStats != 0 )
 
52
  {
 
53
    os << *pRTreeStats;
 
54
    return os;
 
55
  }
 
56
  QgsDebugMsg( QString( "%1%2" ).arg( "IStatistics operator).arg(: Not implemented yet for this index type." ) );
 
57
  return os;
 
58
}