mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-31 10:06:28 +02:00
WIP: more changes
This commit is contained in:
@@ -154,7 +154,7 @@ Class<lay::AbstractMenu> decl_AbstractMenu ("lay", "AbstractMenu",
|
||||
"@param path The path to check\n"
|
||||
"@return false if the path is not a valid path to an item\n"
|
||||
) +
|
||||
method ("insert_item", (void (lay::AbstractMenu::*) (const std::string &, const std::string &, const lay::Action &)) &lay::AbstractMenu::insert_item, gsi::arg ("path"), gsi::arg ("name"), gsi::arg ("action"),
|
||||
method ("insert_item", (void (lay::AbstractMenu::*) (const std::string &, const std::string &, const lay::Action *)) &lay::AbstractMenu::insert_item, gsi::arg ("path"), gsi::arg ("name"), gsi::arg ("action"),
|
||||
"@brief Inserts a new item before the one given by the path\n"
|
||||
"\n"
|
||||
"The Action object passed as the third parameter references the handler which both implements the "
|
||||
|
||||
@@ -209,7 +209,7 @@ public:
|
||||
std::vector<std::string> to_strings () const;
|
||||
|
||||
private:
|
||||
uint32_t *(m_pattern[64]);
|
||||
uint32_t *m_pattern[64];
|
||||
uint32_t m_buffer [64 * 32];
|
||||
unsigned int m_width, m_height;
|
||||
unsigned int m_pattern_stride;
|
||||
|
||||
Reference in New Issue
Block a user