OSDN Git Service

2008-07-15 Benjamin Kosnik <bkoz@redhat.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / libsupc++ / initializer_list
1 // std::initializer_list support -*- C++ -*-
2
3 // Copyright (C) 2008 Free Software Foundation, Inc.
4 //
5 // This file is part of GCC.
6 //
7 // GCC is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2, or (at your option)
10 // any later version.
11 // 
12 // GCC is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 // 
17 // You should have received a copy of the GNU General Public License
18 // along with GCC; see the file COPYING.  If not, write to
19 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction.  Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License.  This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 /** @file initializer_list
32  *  This is a Standard C++ Library header.
33  */
34
35 #ifndef __CXX_INITIALIZER_LIST
36 #define __CXX_INITIALIZER_LIST
37
38 #ifdef __GXX_EXPERIMENTAL_CXX0X__
39
40 #pragma GCC visibility push(default)
41
42 #include <cstddef>
43
44 namespace std
45 {
46   /// initializer_list
47   template<class _E>
48     class initializer_list
49     {
50       const _E* __array;
51       size_t __len;
52
53       // The compiler can call a private constructor.
54       initializer_list(const _E* __a, size_t __l)
55       : __array(__a), __len(__l) { }
56
57     public:
58       initializer_list()
59       : __array(NULL), __len(0) { }
60
61       // Number of elements.
62       size_t size() const
63       { return __len; }
64
65       // First element.
66       const _E* begin() const
67       { return __array; }
68
69       // One past the last element.
70       const _E* end() const
71       { return begin() + size(); }
72   };
73 }
74
75 #pragma GCC visibility pop
76 #endif // C++0x
77 #endif // __CXX_INITIALIZER_LIST