~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_conv_marker_adaptor.h

  • Committer: corsixth.bot at gmail
  • Date: 2014-03-31 23:30:23 UTC
  • Revision ID: svn-v4:c39591fa-788f-11de-a72b-d90af8dea425:trunk:2687
Remove trailing whitespaces in .h, .cpp, .c and .lua files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
// Anti-Grain Geometry - Version 2.4
3
3
// Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com)
4
4
//
5
 
// Permission to copy, use, modify, sell and distribute this software 
6
 
// is granted provided this copyright notice appears in all copies. 
 
5
// Permission to copy, use, modify, sell and distribute this software
 
6
// is granted provided this copyright notice appears in all copies.
7
7
// This software is provided "as is" without express or implied
8
8
// warranty, and with no claim as to its suitability for any purpose.
9
9
//
25
25
 
26
26
    //=====================================================conv_marker_adaptor
27
27
    template<class VertexSource, class Markers=null_markers>
28
 
    struct conv_marker_adaptor : 
 
28
    struct conv_marker_adaptor :
29
29
    public conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence, Markers>
30
30
    {
31
31
        typedef Markers marker_type;
32
32
        typedef conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence, Markers> base_type;
33
33
 
34
 
        conv_marker_adaptor(VertexSource& vs) : 
 
34
        conv_marker_adaptor(VertexSource& vs) :
35
35
            conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence, Markers>(vs)
36
36
        {
37
37
        }
41
41
 
42
42
    private:
43
43
        conv_marker_adaptor(const conv_marker_adaptor<VertexSource, Markers>&);
44
 
        const conv_marker_adaptor<VertexSource, Markers>& 
 
44
        const conv_marker_adaptor<VertexSource, Markers>&
45
45
            operator = (const conv_marker_adaptor<VertexSource, Markers>&);
46
46
    };
47
47