#include <cairommconfig.h>
#include <cairomm/context.h>
#include <cairomm/surface.h>
 
 
int main()
{
#ifdef CAIRO_HAS_SVG_SURFACE
 
    double width = 600;
    double height = 400;
    auto surface =
 
 
    cr->save(); 
    cr->set_source_rgb(0.86, 0.85, 0.47);
    cr->paint();    
    cr->restore();  
 
    cr->save();
    
    cr->set_line_width(20.0);    
    cr->rectangle(0.0, 0.0, cairo_image_surface_get_width(surface->cobj()), height);
    cr->stroke();
 
    cr->set_source_rgba(0.0, 0.0, 0.0, 0.7);
    
    cr->arc(width / 2.0, height / 2.0, 
            height / 4.0, 0.0, 2.0 * M_PI);
    cr->stroke();
 
    
    cr->move_to(width / 4.0, height / 4.0);
    cr->line_to(width * 3.0 / 4.0, height * 3.0 / 4.0);
    cr->stroke();
    cr->restore();
 
    cr->show_page();
 
    return 0;
 
#else
 
    std::cout << 
"You must compile cairo with SVG support for this example to work." 
    return 1;
 
#endif
}
basic_ostream< _CharT, _Traits > & endl(basic_ostream< _CharT, _Traits > &__os)
static RefPtr< Context > create(const RefPtr< Surface > &target)
static RefPtr< SvgSurface > create(std::string filename, double width_in_points, double height_in_points)
Creates a SvgSurface with a specified dimensions that will be saved as the given filename.