2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2009-2009 - DIGITEO - Antoine ELIAS
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
16 #include "listoperation.hxx"
17 #include "localization.h"
18 #include "scilabWrite.hxx"
22 ListOperation::~ListOperation()
26 void ListOperation::whoAmI()
28 std::cout << "types::ListDelete";
31 InternalType* ListOperation::clone(void)
33 return new ListOperation();
36 bool ListOperation::toString(std::wostringstream& ostr)
38 ostr << L"FIXME : Implement ListOperation::toString" << std::endl;
39 scilabWriteW(ostr.str().c_str());