Hi Adam,
Adam Wulkiewicz wrote On 22-5-2014 13:16:
Hi Adam.
On 22/05/2014 03:06 πμ, Adam
Wulkiewicz wrote:
In the last code snippet, I would also add the DOXYGEN_NO_*
macros.
Done.
Ok so I'd like to move this tutorial to the wiki. To do this I
need a place for pics.
Great the Guidelines are on the Wiki now!
Do we also want to put developers guidelines and/or GitHub
tutorial in the docs (which means putting the images somewhere in
docs) or should they stay only in the Wiki (which means creating
an empty branch 'wiki' and putting the images there)?
I'd probably vote for option 2. Plus adding direct links to
Guidelines and Contribution Tutorial in the README.
Yes, I agree. The documentation (Quickbook) is targetted to end
users. Having direct links is OK. But we don't need them in two
places, w.r.t. maintenance.
Can you put one thing more in the Guidelines, in the free function
please add the concept check with the comment that it should be done
as early as possible?
template <typename Point>
inline int foo(Point const& point)
{
// Checking if the geometry type fulfils the concept should be done as early as possible, so in the first entry point
concept::check<Point const>();
return dispatch<Point>::apply(point);
}
Regards, Barend