Changeset 517 for cpp/frams


Ignore:
Timestamp:
06/22/16 16:35:59 (8 years ago)
Author:
Maciej Komosinski
Message:

Added an example of saving MiniGenotype? objects to a file

Location:
cpp/frams
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/Makefile-SDK

    r456 r517  
    55include frams/Makefile-SDK-files
    66
    7 SDK_TESTS=genoconv_test genomanipulation geno_test genooper_test genooper_test_fTest neuro_test loader_test loader_test_param serial_test multiline_f0_test f0_variants_test full_props shapeconvert part_shapes neuro_layout_test geometry_apices_test geometry_info_test geometry_surface_test geometry_volume_test simil_test simil_unittests
     7SDK_TESTS=genoconv_test genomanipulation geno_test genooper_test genooper_test_fTest neuro_test loader_test_geno loader_test_param saver_test_geno serial_test multiline_f0_test f0_variants_test full_props shapeconvert part_shapes neuro_layout_test geometry_apices_test geometry_info_test geometry_surface_test geometry_volume_test simil_test simil_unittests
    88
    99sdk_tests: $(SDK_TESTS)
     
    4444        $(CXX) $(NEURO_TEST_OBJS) $(LDFLAGS) -o $@
    4545
    46 loader_test: $(LOADER_TEST_OBJS)
     46loader_test_geno: $(LOADER_TEST_OBJS)
    4747        $(CXX) $(LOADER_TEST_OBJS) $(LDFLAGS) -o $@
    4848
    4949loader_test_param: $(LOADER_TEST_PARAM_OBJS)
    5050        $(CXX) $(LOADER_TEST_PARAM_OBJS) $(LDFLAGS) -o $@
     51
     52saver_test_geno: $(SAVER_TEST_OBJS)
     53        $(CXX) $(SAVER_TEST_OBJS) $(LDFLAGS) -o $@
    5154
    5255serial_test: $(SERIAL_TEST_OBJS)
  • cpp/frams/Makefile-SDK-files

    r473 r517  
    3636F0_VARIANTS_OBJS=frams/_demos/f0_variants_test.o common/virtfile/stringfile.o $(STDOUT_LOGGER_OBJS) $(SDK_OBJS) $(GENOCONV_SDK_OBJS)
    3737
    38 LOADER_TEST_OBJS=frams/_demos/genotypeloader.o frams/_demos/loader_test.o common/virtfile/virtfile.o frams/param/multiparamload.o common/virtfile/stdiofile.o $(SDK_OBJS) $(GENOCONV_SDK_OBJS)
     38LOADER_TEST_OBJS=frams/_demos/genotypeloader.o frams/_demos/loader_test_geno.o common/virtfile/virtfile.o frams/param/multiparamload.o common/virtfile/stdiofile.o $(SDK_OBJS) $(GENOCONV_SDK_OBJS)
    3939
    4040LOADER_TEST_PARAM_OBJS=frams/_demos/loader_test_param.o frams/param/multiparamload.o common/virtfile/stdiofile.o $(STDOUT_LOGGER_OBJS) $(SDK_OBJS)
     41
     42SAVER_TEST_OBJS=frams/_demos/genotypeloader.o frams/_demos/saver_test_geno.o common/virtfile/virtfile.o frams/param/multiparamload.o common/virtfile/stdiofile.o $(SDK_OBJS) $(GENOCONV_SDK_OBJS)
    4143
    4244GENOCONV_TEST_OBJS= frams/_demos/genoconv_test.o frams/_demos/printconvmap.o $(STDOUT_LOGGER_OBJS) $(SDK_OBJS) $(GENOCONV_SDK_OBJS)
  • cpp/frams/_demos/genotypeloader.h

    r473 r517  
    3232    the Framsticks genotype file.
    3333
    34     Usage pattern: (see loadertest.cpp for the working code)
     34    Usage pattern: (see loader_test_geno.cpp for the working code)
    3535
    3636    1.Initialize
Note: See TracChangeset for help on using the changeset viewer.