Undefined symbol: ai::ArtboardList::ArtboardList()
hi all,
i want to retrieve artboard details adobe sdk .. created plugin in xcode
the following code i used to retrieve the details.
ASInt32 artboardIndex = 0;
ai::ArtboardList artboardList;
result = sAIArtboardSuite->GetArtboardList(artboardList);
result = sAIArtboardSuite->GetActive(artboardList,artboardIndex);
ai::ArtboardProperties artboardProperties;
result = sAIArtboardSuite->GetArtboardProperties(artboardList, artboardIndex, artboardProperties);
AIRealRect artboardRect;
result = artboardProperties.GetPosition(artboardRect);
but im getting an error saying that
Undefined symbol: ai::ArtboardList::ArtboardList()
please anyone help me to resolve this
Thank you
