/[svn]/linuxsampler/trunk/src/engines/InstrumentManager.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/engines/InstrumentManager.h

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

revision 1535 by schoenebeck, Sun Nov 25 17:47:46 2007 UTC revision 1536 by schoenebeck, Mon Dec 3 16:41:17 2007 UTC
# Line 70  namespace LinuxSampler { Line 70  namespace LinuxSampler {
70                  bool operator<(const instrument_id_t& o) const {                  bool operator<(const instrument_id_t& o) const {
71                      return (Index < o.Index || (Index == o.Index && FileName < o.FileName));                      return (Index < o.Index || (Index == o.Index && FileName < o.FileName));
72                  }                  }
73    
74                    bool operator==(const instrument_id_t& o) const {
75                        return (Index == o.Index && FileName == o.FileName);
76                    }
77              };              };
78    
79              /**              /**

Legend:
Removed from v.1535  
changed lines
  Added in v.1536

  ViewVC Help
Powered by ViewVC