view dmd/ddoc/Sections.d @ 105:e414dd80ebfa

moved Section
author Trass3r
date Tue, 31 Aug 2010 17:35:30 +0200
parents dmd/Section.d@10317f0c89a5
children 786ea1839396
line wrap: on
line source

module dmd.Section;

import dmd.DocComment;
import dmd.Scope;
import dmd.Dsymbol;
import dmd.OutBuffer;

class Section
{
    string name;

    string body_;

    int nooutput;

    void write(DocComment dc, Scope sc, Dsymbol s, OutBuffer buf)
	{
		assert(false);
	}
}