- Boost.Geometry
- Created on 2014-11-03
- Previous status reports:
PT RNG
PT OK OK
SEG OK OK
BOX OK OK
PT RNG
PT OK OK
SEG OK OK
BOX OK OK
| // Christian Henning's original: http://pastebin.com/Qk3ssZc8 | |
| namespace boost { namespace gil { | |
| template< typename Reader | |
| , typename View | |
| > | |
| class image_read_iterator | |
| { | |
| public: |
| #include <iostream> | |
| #include <string> | |
| #include <utility> | |
| #include <boost/noncopyable.hpp> | |
| struct animal : private boost::noncopyable | |
| { | |
| animal() {} | |
| animal(char const* name) : name(name) {} |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.SqlServer.Types; | |
| namespace csharp | |
| { | |
| class Program |
| // Version fixed by VeXocide | |
| // Test case based on solution discussed here: | |
| // http://thread.gmane.org/gmane.comp.parsers.spirit.general/24684/focus=24688 | |
| #include <boost/config/warning_disable.hpp> | |
| #include <boost/spirit/include/qi.hpp> | |
| #include <boost/fusion/include/vector.hpp> | |
| namespace qi = boost::spirit::qi; |
| // Interesting issue about conversion operators in C++ | |
| //http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2004/n1592.pdf | |
| #include <iostream> | |
| template <class T> | |
| class Ptr | |
| { | |
| // stuff | |
| public: |
| /* For NAN */ | |
| #ifdef __GNUC__ | |
| #define _GNU_SOURCE | |
| #endif | |
| #include <math.h> |