#ifndef BARECYLINDRICALSURFACE_HPP #define BARECYLINDRICALSURFACE_HPP // // $Id: BareCylindricalSurface.hpp,v 1.3 2000/03/06 15:45:29 mayorov Exp $ // // File: BareCylindricalSurface.hpp // Purpose: A concrete CylindricalSurface with no children // Created: 14-SEP-1998 Harry L. Melanson // // $Revision: 1.3 $ // // #include "geometry_system/components/CylindricalSurface.hpp" class BareCylindricalSurface : public dgs::CylindricalSurface { public: BareCylindricalSurface(const float r, const float z); const std::list get_children(); }; #endif //BARECYLINDRICALSURFACE_HPP