﻿using System;

namespace Oni.Metadata
{
    internal class MetaChar : MetaPrimitiveType
    {
        internal MetaChar() : base("Char", 1)
        {
        }

        public override void Accept(IMetaTypeVisitor visitor)
        {
            //
            // There are no Char typed fields. Char is only used as a String element.
            //

            throw new NotSupportedException();
        }
    }
}
