File: test_cc.cc

package info (click to toggle)
spatialindex 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,312 kB
  • sloc: cpp: 51,468; python: 3,886; ansic: 848; sh: 375; makefile: 155
file content (11 lines) | stat: -rw-r--r-- 244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include <spatialindex/SpatialIndex.h>

using namespace SpatialIndex;

int main(int argc, char** argv) {
    double c1[2] = {1.0, 0.0};
    Point p1 = Point(&c1[0], 2);
    std::cout << "done" << std::endl;
    return(0);
}