/[svn]/libgig/trunk/src/gig.h
ViewVC logotype

Diff of /libgig/trunk/src/gig.h

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

revision 1076 by persson, Tue Mar 6 18:33:30 2007 UTC revision 1098 by schoenebeck, Thu Mar 15 00:32:06 2007 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-2006 by Christian Schoenebeck                      *   *   Copyright (C) 2003-2007 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 326  namespace gig { Line 326  namespace gig {
326      class Region;      class Region;
327      class Group;      class Group;
328    
329      /** Encapsulates articulation information of a dimension region.      /** @brief Encapsulates articulation information of a dimension region.
330       *       *
331       *  Every Gigasampler Instrument has at least one dimension region       *  Every Gigasampler Instrument has at least one dimension region
332       *  (exactly then when it has no dimension defined).       *  (exactly then when it has no dimension defined).
# Line 713  namespace gig { Line 713  namespace gig {
713              Group*      GetGroup(uint index);              Group*      GetGroup(uint index);
714              Group*      AddGroup();              Group*      AddGroup();
715              void        DeleteGroup(Group* pGroup);              void        DeleteGroup(Group* pGroup);
716                void        DeleteGroupOnly(Group* pGroup);
717              virtual    ~File();              virtual    ~File();
718                virtual void UpdateChunks();
719          protected:          protected:
720              // overridden protected methods from DLS::File              // overridden protected methods from DLS::File
721              virtual void LoadSamples();              virtual void LoadSamples();
# Line 730  namespace gig { Line 732  namespace gig {
732              std::list<Group*>::iterator GroupsIterator;              std::list<Group*>::iterator GroupsIterator;
733      };      };
734    
735      /** Will be thrown whenever a gig specific error occurs while trying to access a Gigasampler File. */      /**
736         * Will be thrown whenever a gig specific error occurs while trying to
737         * access a Gigasampler File. Note: In your application you should
738         * better catch for RIFF::Exception rather than this one, except you
739         * explicitly want to catch and handle gig::Exception, DLS::Exception
740         * and RIFF::Exception independently, which usually shouldn't be
741         * necessary though.
742         */
743      class Exception : public DLS::Exception {      class Exception : public DLS::Exception {
744          public:          public:
745              Exception(String Message);              Exception(String Message);

Legend:
Removed from v.1076  
changed lines
  Added in v.1098

  ViewVC Help
Powered by ViewVC