#include <stdlib.h>#include "topSchema.h"#include "schema.h"#include <iostream>#include <assert.h>#include <cstdlib>Go to the source code of this file.
Functions | |
| schema * | makeTopSchema (schema *s, double margin, const string &text, const string &link) |
| Creates a new top schema. | |
Creates a new top schema.
Definition at line 33 of file topSchema.cpp.
References makeDecorateSchema().
Referenced by writeSchemaFile().
00034 { 00035 return new topSchema (makeDecorateSchema(s, margin/2, text), margin/2, "", link); 00036 }
1.6.3