2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2010-2010 - DIGITEO - Bruno JOFRET
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 #include "DataModel.hxx"
23 static BOOL setGraphicObjectProperty(char const* _pstID, int _iName, void const* _dblValue, int numElements)
25 return DataModel::get()->setGraphicObjectProperty(_pstID, _iName, _dblValue, numElements);
28 static void getGraphicObjectProperty(char const* _pstID, int _iName, void **_pvData)
30 return DataModel::get()->getGraphicObjectProperty(_pstID, _iName, _pvData);
33 static char const* createDataObject(char const* _pstID, int _iType)
35 return DataModel::get()->createDataObject(_pstID, _iType);
38 static void deleteDataObject(char const* _pstID)
40 DataModel::get()->deleteDataObject(_pstID);