klayout/src/lib/libBasicPie.h

76 lines
2.0 KiB
C
Raw Normal View History

/*
KLayout Layout Viewer
Copyright (C) 2006-2016 Matthias Koefferlein
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef HDR_libBasicPie
#define HDR_libBasicPie
#include "libCommon.h"
#include "dbPCellDeclaration.h"
namespace lib
{
/**
* @brief Implements the "PIE" PCell of the basic library
*/
class BasicPie
: public db::PCellDeclaration
{
public:
/**
* @brief The constructor
*/
BasicPie ();
/**
* @brief Get the layer declarations
*/
virtual std::vector<db::PCellLayerDeclaration> get_layer_declarations (const db::pcell_parameters_type &parameters) const;
/**
* @brief Coerces the parameters (in particular updates the computed ones)
*/
virtual void coerce_parameters (const db::Layout &layout, db::pcell_parameters_type &parameters) const;
/**
* @brief Produces the layout
*/
virtual void produce (const db::Layout &layout, const std::vector<unsigned int> &layer_ids, const db::pcell_parameters_type &parameters, db::Cell &cell) const;
/**
* @brief Get the display name for a PCell with the given parameters
*/
virtual std::string get_display_name (const db::pcell_parameters_type &) const;
/**
* @brief Get the parameter declarations
*/
virtual std::vector<db::PCellParameterDeclaration> get_parameter_declarations () const;
};
}
#endif