- Timestamp:
- 03/31/16 00:34:37 (9 years ago)
- Location:
- cpp/frams
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/canvas/nn_smart_layout.cpp
r319 r492 9 9 #include <alloc.h> //borland needs for alloc/free 10 10 #endif 11 #if def MACOS11 #if (defined MACOS) | (defined EMSCRIPTEN) 12 12 #include <stdlib.h> 13 13 #endif -
cpp/frams/genetics/geno.h
r348 r492 17 17 public: 18 18 virtual int testGenoValidity(Geno& g) = 0;/// -1=no information 0=invalid 1=valid 19 virtual ~GenoValidator() { }; 19 20 }; 20 21 … … 25 26 public: 26 27 int testGenoValidity(Geno& g); 28 ~ModelGenoValidator() { } 27 29 }; 28 30 -
cpp/frams/model/similarity/simil_model.cpp
r451 r492 13 13 #include "common/nonstd.h" 14 14 #include <frams/vm/classes/genoobj.h> 15 #include <stdlib.h> 15 #ifdef EMSCRIPTEN 16 #include <cstdlib> 17 #else 18 #include <stdlib.h> 19 #endif 16 20 #include <math.h> 17 21 #include <string> -
cpp/frams/neuro/neuroimpl.cpp
r484 r492 458 458 #endif 459 459 460 #ifndef SDK_WITHOUT_FRAMS 460 461 extern ParamEntry creature_paramtab[]; 461 462 static Param creature_param(creature_paramtab,0); 463 #endif 462 464 463 465 Creature* NeuroImpl::getCreature()
Note: See TracChangeset
for help on using the changeset viewer.