#include "decorateSchema.h"#include "schema.h"#include <iostream>#include <assert.h>Go to the source code of this file.
Functions | |
| schema * | makeDecorateSchema (schema *s, double margin, const string &text) |
| Creates a new decorated schema. | |
Creates a new decorated schema.
Definition at line 31 of file decorateSchema.cpp.
Referenced by generateDiagramSchema(), generateInsideSchema(), and makeTopSchema().
00032 { 00033 return new decorateSchema (s, margin, text); 00034 }
1.6.3