// // $Id: BareCylindricalSurface.cpp,v 1.3 2001/07/17 19:06:00 russo Exp $ // // File: BareCylindricalSurface.cpp // Purpose: A concrete CylindricalSurface with no children // Created: 14-SEP-1998 Harry L. Melanson // // $Revision: 1.3 $ // // #include "cft_geometry/material/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; }