summaryrefslogtreecommitdiff
path: root/src/dotnet-library/scala/runtime/BooleanRef.cs
blob: 455ed3beefd312051e521ac3b2ad62be3dc6ff45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2002-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id$

namespace scala.runtime {

  using System;

  [Serializable]
  public class BooleanRef {
    public bool elem;
    public BooleanRef(bool elem) { this.elem = elem; }
    override public string ToString() { return elem.ToString(); }
  }

}