/[svn]/linuxsampler/trunk/src/db/InstrumentsDbUtilities.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/db/InstrumentsDbUtilities.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3090 by persson, Sun Aug 30 10:00:44 2015 UTC revision 3091 by schoenebeck, Mon Jan 16 15:01:21 2017 UTC
# Line 25  Line 25 
25    
26  #include <memory>  #include <memory>
27  #include <vector>  #include <vector>
28  #include <gig.h>  #if AC_APPLE_UNIVERSAL_BUILD
29    # include <libgig/gig.h>
30    #else
31    # include <gig.h>
32    #endif
33  #include <sqlite3.h>  #include <sqlite3.h>
34    
35  #include "../common/File.h"  #include "../common/File.h"
# Line 104  namespace LinuxSampler { Line 108  namespace LinuxSampler {
108          FLAT = 2          FLAT = 2
109      };      };
110    
111  #if __cplusplus >= 201103L  #if __cplusplus >= 201103L && !CONFIG_NO_CPP11STL
112      typedef std::unique_ptr<std::vector<int>> IntListPtr;      typedef std::unique_ptr<std::vector<int>> IntListPtr;
113      typedef std::unique_ptr<std::vector<String>> StringListPtr;      typedef std::unique_ptr<std::vector<String>> StringListPtr;
114  #else  #else

Legend:
Removed from v.3090  
changed lines
  Added in v.3091

  ViewVC Help
Powered by ViewVC