Last change
on this file since 12830 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
685 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.IO;
|
---|
3 | using System.ComponentModel;
|
---|
4 |
|
---|
5 | namespace SharpVectors.Runtime
|
---|
6 | {
|
---|
7 | [Serializable]
|
---|
8 | [TypeConverter(typeof(EmbeddedBitmapDataConverter))]
|
---|
9 | public struct EmbeddedBitmapData
|
---|
10 | {
|
---|
11 | #region Private Fields
|
---|
12 |
|
---|
13 | private MemoryStream _stream;
|
---|
14 |
|
---|
15 | #endregion
|
---|
16 |
|
---|
17 | #region Constructors
|
---|
18 |
|
---|
19 | public EmbeddedBitmapData(MemoryStream stream)
|
---|
20 | {
|
---|
21 | _stream = stream;
|
---|
22 | }
|
---|
23 |
|
---|
24 | #endregion
|
---|
25 |
|
---|
26 | #region Public Properties
|
---|
27 |
|
---|
28 | public MemoryStream Stream
|
---|
29 | {
|
---|
30 | get { return _stream; }
|
---|
31 | set { _stream = value; }
|
---|
32 | }
|
---|
33 |
|
---|
34 | #endregion
|
---|
35 | }
|
---|
36 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.