SVG Refactor - minor cleanups

This commit is contained in:
wandererfan
2019-06-08 11:16:51 -04:00
committed by WandererFan
parent ca5051a798
commit 044fe79549
9 changed files with 100 additions and 101 deletions

View File

@@ -481,4 +481,16 @@ void DrawPage::Restore(Base::XMLReader &reader)
reader.readEndElement("Properties");
}
// Python Drawing feature ---------------------------------------------------------
namespace App {
/// @cond DOXERR
PROPERTY_SOURCE_TEMPLATE(TechDraw::DrawPagePython, TechDraw::DrawPage)
template<> const char* TechDraw::DrawPagePython::getViewProviderName(void) const {
return "TechDrawGui::ViewProviderPage";
}
/// @endcond
// explicit template instantiation
template class TechDrawExport FeaturePythonT<TechDraw::DrawPage>;
}