Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Move overriden methods from headers to cpp files
Since they can't be inlined anyway
- Loading branch information
Showing
with
221 additions
and 39 deletions.
- +2 −0 python/core/geometry/qgscircle.sip
- +2 −0 python/core/geometry/qgsgeometrycollection.sip
- +3 −0 python/core/geometry/qgslinestring.sip
- +1 −0 python/core/geometry/qgsmulticurve.sip
- +2 −0 python/core/geometry/qgsmultilinestring.sip
- +3 −0 python/core/geometry/qgsmultipoint.sip
- +2 −0 python/core/geometry/qgsmultipolygon.sip
- +1 −0 python/core/geometry/qgsmultisurface.sip
- +12 −0 python/core/geometry/qgspoint.sip
- +1 −0 python/core/geometry/qgstriangle.sip
- +12 −0 src/core/geometry/qgscircle.cpp
- +2 −10 src/core/geometry/qgscircle.h
- +10 −0 src/core/geometry/qgscompoundcurve.cpp
- +2 −2 src/core/geometry/qgscompoundcurve.h
- +10 −0 src/core/geometry/qgsgeometrycollection.cpp
- +2 −2 src/core/geometry/qgsgeometrycollection.h
- +15 −0 src/core/geometry/qgslinestring.cpp
- +3 −3 src/core/geometry/qgslinestring.h
- +5 −0 src/core/geometry/qgsmulticurve.cpp
- +1 −1 src/core/geometry/qgsmulticurve.h
- +10 −0 src/core/geometry/qgsmultilinestring.cpp
- +2 −2 src/core/geometry/qgsmultilinestring.h
- +15 −0 src/core/geometry/qgsmultipoint.cpp
- +3 −3 src/core/geometry/qgsmultipoint.h
- +10 −0 src/core/geometry/qgsmultipolygon.cpp
- +2 −2 src/core/geometry/qgsmultipolygon.h
- +5 −0 src/core/geometry/qgsmultisurface.cpp
- +1 −1 src/core/geometry/qgsmultisurface.h
- +64 −0 src/core/geometry/qgspoint.cpp
- +12 −12 src/core/geometry/qgspoint.h
- +5 −0 src/core/geometry/qgstriangle.cpp
- +1 −1 src/core/geometry/qgstriangle.h
Oops, something went wrong.