Changeset 317
- Timestamp:
- 01/30/15 02:51:58 (10 years ago)
- Location:
- cpp/frams
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/Makefile-SDK
r307 r317 10 10 11 11 SDK_BUILD_CONFIG= -include frams/config/sdk_build_config.h 12 CXXFLAGS= -I$(CURDIR) -std=gnu++11 -DLINUX$(SDK_BUILD_CONFIG) -Wno-parentheses -Wno-overloaded-virtual -Wno-format -g12 CXXFLAGS= -I$(CURDIR) -std=gnu++11 $(SDK_BUILD_CONFIG) -Wno-parentheses -Wno-overloaded-virtual -Wno-format -g 13 13 14 14 ############################################# -
cpp/frams/_demos/neuro_layout_test.cpp
r286 r317 21 21 22 22 // stl is fun? ;-) ForwardIterator implementation for element coordinates (required by min_element/max_element) 23 template <int MEMBER> struct NNIter //MEMBER: 0..3=x/y/w/h23 template <int MEMBER> struct NNIter: public std::iterator<std::forward_iterator_tag,int> //MEMBER: 0..3=x/y/w/h 24 24 { 25 25 NNLayoutState *nn; int index; -
cpp/frams/config/sdk_build_config.h
r288 r317 7 7 8 8 #include "version.h" 9 10 #if __APPLE__ 11 #define MACOS 12 #elif __linux 13 #define LINUX 14 #endif 9 15 10 16 #define NOCREATUREOBJECT
Note: See TracChangeset
for help on using the changeset viewer.