CharacterBlock.cs 421 Bytes
Newer Older
Eric Domke's avatar
Eric Domke committed
1

Matt Schneeberger's avatar
Matt Schneeberger committed
2
namespace Svg.ExCSS.Model.TextBlocks
Eric Domke's avatar
Eric Domke committed
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
    internal abstract class CharacterBlock : Block
    {
        private readonly char _value;

        protected CharacterBlock()
        {
            _value = Specification.Null;
        }

        protected CharacterBlock(char value)
        {
            _value = value;
        }

        internal char Value
        {
            get { return _value; }
        }
    }
}