~kalon33/corsix-th/master

« back to all changes in this revision

Viewing changes to agg/include/agg_conv_shorten_path.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
//
24
24
{
25
25
 
26
26
    //=======================================================conv_shorten_path
27
 
    template<class VertexSource>  class conv_shorten_path : 
 
27
    template<class VertexSource>  class conv_shorten_path :
28
28
    public conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence>
29
29
    {
30
30
    public:
31
31
        typedef conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence> base_type;
32
32
 
33
 
        conv_shorten_path(VertexSource& vs) : 
 
33
        conv_shorten_path(VertexSource& vs) :
34
34
            conv_adaptor_vcgen<VertexSource, vcgen_vertex_sequence>(vs)
35
35
        {
36
36
        }
40
40
 
41
41
    private:
42
42
        conv_shorten_path(const conv_shorten_path<VertexSource>&);
43
 
        const conv_shorten_path<VertexSource>& 
 
43
        const conv_shorten_path<VertexSource>&
44
44
            operator = (const conv_shorten_path<VertexSource>&);
45
45
    };
46
46