Changeset 64 for cpp/gdk/neurofactory.cpp
- Timestamp:
- 01/28/11 23:29:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/gdk/neurofactory.cpp
r5 r64 1 // This file is a part of Framsticks GDK library.2 // Copyright (C) 2002-20 06Szymon Ulatowski. See LICENSE.txt for details.3 // Refer to http://www.frams .alife.pl/ for further information.1 // This file is a part of the Framsticks GDK library. 2 // Copyright (C) 2002-2011 Szymon Ulatowski. See LICENSE.txt for details. 3 // Refer to http://www.framsticks.com/ for further information. 4 4 5 5 #include "neurofactory.h" … … 17 17 NeuroImpl* ni=(NeuroImpl*)nc->impl; 18 18 if (!ni) return 0; 19 return ni->makeNew(); 19 ni=ni->makeNew(); 20 if (ni) ni->neuroclass=nc; 21 return ni; 20 22 } 21 23
Note: See TracChangeset
for help on using the changeset viewer.