aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/coupled_logistic_msg.cpp
diff options
context:
space:
mode:
authorTim Blechmann <timblech@users.sourceforge.net>2004-12-27 22:55:41 +0000
committerIOhannes m zmölnig <zmoelnig@iem.at>2015-10-14 15:11:58 +0200
commit6963657b3f3ee4321394953a2cc67cd7386cce2d (patch)
tree3ded4ec93a8843b9f990848a49afb9b514ec6a3e /chaos/src/coupled_logistic_msg.cpp
parentb2f2fd990f9059db784a7849726c6fc5006c70f9 (diff)
additions and better code reuse
svn path=/trunk/externals/tb/; revision=2433
Diffstat (limited to 'chaos/src/coupled_logistic_msg.cpp')
-rw-r--r--chaos/src/coupled_logistic_msg.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/chaos/src/coupled_logistic_msg.cpp b/chaos/src/coupled_logistic_msg.cpp
new file mode 100644
index 0000000..994a79d
--- /dev/null
+++ b/chaos/src/coupled_logistic_msg.cpp
@@ -0,0 +1,34 @@
+//
+//
+// chaos~
+// Copyright (C) 2004 Tim Blechmann
+//
+// This program 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 2 of the License, or
+// (at your option) any later version.
+//
+// This program 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 this program; see the file COPYING. If not, write to
+// the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+// Boston, MA 02111-1307, USA.
+
+#include "coupled_logistic.hpp"
+#include "chaos_msg.hpp"
+
+class coupled_logistic_msg:
+ public chaos_msg<coupled_logistic>
+{
+ CHAOS_MSG_INIT(coupled_logistic, COUPLED_LOGISTIC_ATTRIBUTES);
+
+ COUPLED_LOGISTIC_CALLBACKS;
+};
+
+
+
+FLEXT_LIB_V("coupled_logistic", coupled_logistic_msg);