Paradox Game Engine  v1.0.0 beta06
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
ViewElement.cs
Go to the documentation of this file.
1 // Copyright (c) 2014 Silicon Studio Corp. (http://siliconstudio.co.jp)
2 // This file is distributed under GPL v3. See LICENSE.md for details.
3 using System;
4 using System.Collections;
5 using System.Collections.Generic;
6 using Android.Views;
7 
8 namespace MonoDroid.Dialog
9 {
10  public class ViewElement : IEnumerable<View>
11  {
12  public ViewElement(object o, View view, bool b)
13  {
14 
15  }
16 
17  public IEnumerator<View> GetEnumerator()
18  {
19  throw new NotImplementedException();
20  }
21 
22  IEnumerator IEnumerable.GetEnumerator()
23  {
24  return GetEnumerator();
25  }
26  }
27 }
function b
IEnumerator< View > GetEnumerator()
Definition: ViewElement.cs:17
ViewElement(object o, View view, bool b)
Definition: ViewElement.cs:12