~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to extern/carve/include/carve/collection.hpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Begin License:
 
2
// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com).
 
3
// All rights reserved.
 
4
//
 
5
// This file is part of the Carve CSG Library (http://carve-csg.com/)
 
6
//
 
7
// This file may be used under the terms of the GNU General Public
 
8
// License version 2.0 as published by the Free Software Foundation
 
9
// and appearing in the file LICENSE.GPL2 included in the packaging of
 
10
// this file.
 
11
//
 
12
// This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
 
13
// INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
 
14
// A PARTICULAR PURPOSE.
 
15
// End:
 
16
 
 
17
 
 
18
#pragma once
 
19
 
 
20
#include <carve/collection/unordered.hpp>
 
21
 
 
22
namespace carve {
 
23
 
 
24
  template<typename set_t>
 
25
  class set_insert_iterator : public std::iterator<std::output_iterator_tag, void, void, void, void> {
 
26
 
 
27
  protected:
 
28
    set_t *set;
 
29
  public:
 
30
 
 
31
    set_insert_iterator(set_t &s) : set(&s) {
 
32
    }
 
33
 
 
34
    set_insert_iterator &
 
35
    operator=(typename set_t::const_reference value) {
 
36
      set->insert(value);
 
37
      return *this;
 
38
    }
 
39
 
 
40
    set_insert_iterator &operator*() { return *this; }
 
41
    set_insert_iterator &operator++() { return *this; }
 
42
    set_insert_iterator &operator++(int) { return *this; }
 
43
  };
 
44
 
 
45
  template<typename set_t>
 
46
  inline set_insert_iterator<set_t>
 
47
  set_inserter(set_t &s) {
 
48
    return set_insert_iterator<set_t>(s);
 
49
  }
 
50
 
 
51
}