PipeBlock.cs 519 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
24
25
26
27
28
{
    internal class PipeBlock : Block
    {
        private readonly static PipeBlock TokenBlock;

        static PipeBlock()
        {
            TokenBlock = new PipeBlock();
        }

        PipeBlock()
        {
            GrammarSegment = GrammarSegment.Column;
        }

        internal static PipeBlock Token
        {
            get { return TokenBlock; }
        }

        public override string ToString()
        {
            return "||";
        }
    }
}