Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRuntime/EmbeddedBitmapData.cs @ 14052

Last change on this file since 14052 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 685 bytes
Line 
1using System;
2using System.IO;
3using System.ComponentModel;
4
5namespace 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.