Files
@ 4d22d3755063
Branch filter:
Location: EI/VirtualLeaf/src/simplugin.cpp - annotation
4d22d3755063
1.2 KiB
text/x-c++src
Merged ChangeLog
Enter commit message. Lines beginning with 'HG:' are removed.
Leave message empty to abort commit.
--
user: Roeland Merks <roeland.merks@cwi.nl>
branch 'default'
changed data/leaves/ChangeLog
changed data/leaves/auxin_growth.xml
changed doc/v1.html
changed doc/v1.pdf
changed doc/v1.rst
changed src/ChangeLog
Enter commit message. Lines beginning with 'HG:' are removed.
Leave message empty to abort commit.
--
user: Roeland Merks <roeland.merks@cwi.nl>
branch 'default'
changed data/leaves/ChangeLog
changed data/leaves/auxin_growth.xml
changed doc/v1.html
changed doc/v1.pdf
changed doc/v1.rst
changed src/ChangeLog
79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 9a40ab737a73 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 782330072e62 782330072e62 782330072e62 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 79f94eaa3b9e 782330072e62 79f94eaa3b9e 79f94eaa3b9e 9a40ab737a73 9a40ab737a73 782330072e62 | /*
*
* This file is part of the Virtual Leaf.
*
* The Virtual Leaf is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Virtual Leaf is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with the Virtual Leaf. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010 Roeland Merks.
*
*/
#include <string>
#include <QString>
#include "simplugin.h"
static const std::string _module_id("$Id$");
void SimPluginInterface::SetParameters(Parameter *pass_pars)
{
par = pass_pars;
}
void SimPluginInterface::SetCellsStaticDatamembers( CellsStaticDatamembers *cells_static_data_members_of_main)
{
CellBase::static_data_members = cells_static_data_members_of_main;
}
QString SimPluginInterface::DefaultLeafML(void) { return QString(); }
/* finis */
|