OriginGroup: add new abstraction layer between the Part and the GeoFeatureGroup
This commit is contained in:
committed by
Stefan Tröger
parent
59ca9212d6
commit
2c2d155ee9
34
src/App/OriginGroupPyImp.cpp
Normal file
34
src/App/OriginGroupPyImp.cpp
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
#include "PreCompiled.h"
|
||||
|
||||
#include "App/OriginGroup.h"
|
||||
|
||||
// inclusion of the generated files (generated out of OriginGroupPy.xml)
|
||||
#include "OriginGroupPy.h"
|
||||
#include "OriginGroupPy.cpp"
|
||||
|
||||
using namespace App;
|
||||
|
||||
// returns a string which represents the object e.g. when printed in python
|
||||
std::string OriginGroupPy::representation(void) const
|
||||
{
|
||||
return std::string("<OriginGroup object>");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
PyObject *OriginGroupPy::getCustomAttributes(const char* /*attr*/) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int OriginGroupPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user