~ubuntu-branches/ubuntu/maverick/transmission/maverick

« back to all changes in this revision

Viewing changes to wx/foreach.h

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Klimonda
  • Date: 2009-05-22 21:57:30 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (2.1.18 sid) (1.3.8 upstream)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20090522215730-ly5kgv5aw9ig2u82
Tags: upstream-1.61
ImportĀ upstreamĀ versionĀ 1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Xmission - a cross-platform bittorrent client
3
 
 * Copyright (C) 2007 Charles Kerr <charles@transmissionbt.com>
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; version 2 of the License.
8
 
 *
9
 
 * This program is distributed in the hope that it will be useful,
10
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
 * GNU General Public License for more details.
13
 
 *
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
 *
18
 
 * $Id: foreach.h 7664 2009-01-11 17:46:51Z charles $
19
 
 */
20
 
 
21
 
 
22
 
#ifndef _Foreach_h_
23
 
#define _Foreach_h_
24
 
 
25
 
#define foreach(Type,var,itname) \
26
 
  for (Type::iterator itname(var.begin()), \
27
 
                            itname##end(var.end()); itname!=itname##end; \
28
 
                            ++itname)
29
 
 
30
 
#define foreach_const(Type,var,itname) \
31
 
  for (Type::const_iterator itname(var.begin()), \
32
 
                            itname##end(var.end()); itname!=itname##end; \
33
 
                            ++itname)
34
 
 
35
 
#define foreach_r(Type,var,itname) \
36
 
  for (Type::reverse_iterator itname(var.rbegin()), \
37
 
                              itname##end(var.rend()); itname!=itname##end; \
38
 
                              ++itname)
39
 
 
40
 
#define foreach_const_r(Type,var,itname) \
41
 
  for (Type::const_reverse_iterator itname(var.rbegin()), \
42
 
                           itname##end(var.rend()); itname!=itname##end; \
43
 
                           ++itname)
44
 
 
45
 
#endif