#include "cableSchema.h"
#include "schema.h"
#include <assert.h>
#include <iostream>
Go to the source code of this file.
Functions | |
schema * | makeCableSchema (unsigned int n) |
Build n cables in parallel. |
schema* makeCableSchema | ( | unsigned int | n | ) |
Build n cables in parallel.
Definition at line 32 of file cableSchema.cpp.
Referenced by generateInsideSchema(), and makeSeqSchema().
00033 { 00034 assert(n>0); 00035 return new cableSchema(n); 00036 }