DEBSOURCES
Skip Quicknav
sources / cython / 3.0.11%2Bdfsg-2 / tests / compile / point.h
1234567891011121314
#ifndef POINT_H #define POINT_H namespace geometry { struct Point { double x; double y; int color; }; } #endif