Bumping manifests a=b2g-bump
[gecko.git] / dom / bindings / UnionMember.h
blob3842c6eb03d399061384929a20eb64db127eef5d
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* A class for holding the members of a union. */
9 #ifndef mozilla_dom_UnionMember_h
10 #define mozilla_dom_UnionMember_h
12 #include "mozilla/Alignment.h"
14 namespace mozilla {
15 namespace dom {
17 // The union type has an enum to keep track of which of its UnionMembers has
18 // been constructed.
19 template<class T>
20 class UnionMember
22 AlignedStorage2<T> mStorage;
24 public:
25 T& SetValue()
27 new (mStorage.addr()) T();
28 return *mStorage.addr();
30 template <typename T1>
31 T& SetValue(const T1& aValue)
33 new (mStorage.addr()) T(aValue);
34 return *mStorage.addr();
36 template<typename T1, typename T2>
37 T& SetValue(const T1& aValue1, const T2& aValue2)
39 new (mStorage.addr()) T(aValue1, aValue2);
40 return *mStorage.addr();
42 T& Value()
44 return *mStorage.addr();
46 const T& Value() const
48 return *mStorage.addr();
50 void Destroy()
52 mStorage.addr()->~T();
56 } // namespace dom
57 } // namespace mozilla
59 #endif // mozilla_dom_UnionMember_h