File: ClassSizes.cpp

package info (click to toggle)
geos 3.5.1-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,380 kB
  • ctags: 14,863
  • sloc: cpp: 101,191; xml: 29,301; sh: 4,466; ansic: 3,828; php: 1,871; makefile: 1,640; ruby: 1,295; python: 928
file content (46 lines) | stat: -rw-r--r-- 1,226 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**********************************************************************
 *
 * GEOS - Geometry Engine Open Source
 * http://geos.osgeo.org
 *
 * Copyright (C) 2011  Sandro Santilli <strk@keybit.net>
 *
 * This is free software; you can redistribute and/or modify it under
 * the terms of the GNU Lesser General Public Licence as published
 * by the Free Software Foundation. 
 * See the COPYING file for more information.
 *
 **********************************************************************
 *
 * - Monitor class sizes
 *
 **********************************************************************/


#include <geos/geom/GeometryFactory.h>
#include <geos/io/WKTReader.h>
#include <geos/geom/Geometry.h>
#include <geos/geomgraph/DirectedEdge.h>
#include <geos/geomgraph/EdgeEnd.h>
#include <geos/geomgraph/PlanarGraph.h>
#include <geos/noding/NodedSegmentString.h>
#include <geos/profiler.h>
#include <geos/platform.h>
#include <iostream>

using namespace std;
using namespace geos;

#define check(x) \
	{ cout << "Size of " << #x << " is " << sizeof(x) << endl; }

int
main()
{
	check(geomgraph::PlanarGraph);
	check(geomgraph::EdgeEnd);
	check(geomgraph::DirectedEdge);
	check(noding::NodedSegmentString);
	check(int64);
}