#ifndef SILICON_GEOMETRY_HPP #define SILICON_GEOMETRY_HPP // // $Id: silicon_geometry.hpp,v 1.1 1998/12/04 21:53:08 hobbs Exp $ // // File: silicon_geometry.hpp // Purpose: // Created: 4-DEC-1998 John D. Hobbs // // $Revision: 1.1 $ // // // Include files #include #include /** Standalone silicon geometry Framework Package. Create a {\bf Framework} package to handle the default silicon geometry. This has only the initialization hook. */ class silicon_geometry: public fwk::Package { public: /// Constructor. Instantiates the default silicon geometry silicon_geometry(fwk::Context* context); /// Required framework interface. std::string packageName() const; /// Required framework interface. static std::string package_name(); /// Required framework interface. static std::string version(); }; #endif //SILICON_GEOMETRY_HPP