/[svn]/libgig/trunk/src/DLS.cpp
ViewVC logotype

Diff of /libgig/trunk/src/DLS.cpp

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

revision 3197 by schoenebeck, Wed Dec 14 18:55:08 2016 UTC revision 3198 by schoenebeck, Sun May 21 12:46:05 2017 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   libgig - C++ cross-platform Gigasampler format file access library    *   *   libgig - C++ cross-platform Gigasampler format file access library    *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003-2016 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2017 by Christian Schoenebeck                      *
6   *                              <cuse@users.sourceforge.net>               *   *                              <cuse@users.sourceforge.net>               *
7   *                                                                         *   *                                                                         *
8   *   This library is free software; you can redistribute it and/or modify  *   *   This library is free software; you can redistribute it and/or modify  *
# Line 1968  namespace DLS { Line 1968  namespace DLS {
1968  // *************** Exception ***************  // *************** Exception ***************
1969  // *  // *
1970    
1971      Exception::Exception(String Message) : RIFF::Exception(Message) {      Exception::Exception() : RIFF::Exception() {
1972        }
1973    
1974        Exception::Exception(String format, ...) : RIFF::Exception() {
1975            va_list arg;
1976            va_start(arg, format);
1977            Message = assemble(format, arg);
1978            va_end(arg);
1979        }
1980    
1981        Exception::Exception(String format, va_list arg) : RIFF::Exception() {
1982            Message = assemble(format, arg);
1983      }      }
1984    
1985      void Exception::PrintMessage() {      void Exception::PrintMessage() {

Legend:
Removed from v.3197  
changed lines
  Added in v.3198

  ViewVC Help
Powered by ViewVC