summaryrefslogtreecommitdiffstats
path: root/src/pagedef.cpp
blob: d1e577f922599ccd14da7eb7e75235f923020a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "pagedef.h"


PageDef::PageDef(const char *f,int l,const char *n,
                 const char *d,const char *t)
 : Definition(f,l,n), m_title(t)
{
  setDocumentation(d,f,l);

}

PageDef::~PageDef()
{
}