mirror of https://github.com/KLayout/klayout.git
WIP: fixed linker issues.
This commit is contained in:
parent
c360f6d4a7
commit
10cfac3d42
|
|
@ -31,7 +31,8 @@
|
|||
|
||||
namespace tl
|
||||
{
|
||||
template <> tl::Registrar<db::TechnologyComponentProvider> *Registrar<db::TechnologyComponentProvider>::instance = 0;
|
||||
template<> DB_PUBLIC tl::Registrar<db::TechnologyComponentProvider> *tl::Registrar<db::TechnologyComponentProvider>::instance = 0;
|
||||
template class DB_PUBLIC tl::RegisteredClass<db::TechnologyComponentProvider>;
|
||||
}
|
||||
|
||||
namespace db
|
||||
|
|
|
|||
|
|
@ -30,10 +30,9 @@
|
|||
#include <QFileInfo>
|
||||
#include <QDir>
|
||||
|
||||
namespace lay
|
||||
namespace tl
|
||||
{
|
||||
|
||||
// .. nothing yet ..
|
||||
|
||||
template<> LAYBASIC_PUBLIC tl::Registrar<lay::TechnologyEditorProvider> *tl::Registrar<lay::TechnologyEditorProvider>::instance = 0;
|
||||
template class LAYBASIC_PUBLIC tl::RegisteredClass<lay::TechnologyEditorProvider>;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -106,12 +106,14 @@ private:
|
|||
* @brief A base class for a technology component provider
|
||||
*/
|
||||
class LAYBASIC_PUBLIC TechnologyEditorProvider
|
||||
: public tl::RegisteredClass<TechnologyEditorProvider>
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* @brief The constructor
|
||||
*/
|
||||
TechnologyEditorProvider ()
|
||||
: tl::RegisteredClass<TechnologyEditorProvider> (this)
|
||||
{
|
||||
// .. nothing yet ..
|
||||
}
|
||||
|
|
|
|||
|
|
@ -237,7 +237,6 @@ HEADERS = \
|
|||
rdbMarkerBrowserDialog.h \
|
||||
rdbMarkerBrowser.h \
|
||||
rdbMarkerBrowserPage.h \
|
||||
layCommonReaderPlugin.h \
|
||||
layLineStyles.h \
|
||||
laySelectLineStyleForm.h \
|
||||
layLineStylePalette.h \
|
||||
|
|
|
|||
|
|
@ -13,9 +13,10 @@ LIBS += -L$$DESTDIR/../db_plugins -lcif
|
|||
}
|
||||
|
||||
HEADERS = \
|
||||
layCommonReaderPlugin.h \
|
||||
|
||||
SOURCES = \
|
||||
layCommonStreamOptions.cc \
|
||||
layCommonReaderPlugin.cc \
|
||||
|
||||
FORMS = \
|
||||
CommonReaderOptionsPage.ui \
|
||||
|
|
|
|||
Loading…
Reference in New Issue