// // $Id: BareCylindricalSurface.cpp,v 1.1 1999/04/27 01:01:24 hobbs Exp $ // // File: BareCylindricalSurface.cpp // Purpose: A concrete CylindricalSurface with no children // Created: 14-SEP-1998 Harry L. Melanson // // $Revision: 1.1 $ // // #include "BareCylindricalSurface.hpp" using namespace std; using namespace dgs; BareCylindricalSurface::BareCylindricalSurface(const float r, const float z): CylindricalSurface(r, z) {} const list BareCylindricalSurface::get_children() { list empty; // No childern return empty; }