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

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

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

revision 3936 by schoenebeck, Thu Jun 17 10:29:54 2021 UTC revision 3937 by schoenebeck, Thu Jun 17 10:59:54 2021 UTC
# Line 6937  namespace { Line 6937  namespace {
6937          return bRequiresSave;          return bRequiresSave;
6938      }      }
6939    
6940        /**
6941         * Returns a pointer to the first <i>Group</i> object of the file,
6942         * <i>NULL</i> otherwise.
6943         *
6944         * @deprecated  This method is not reentrant-safe, use GetGroup() instead.
6945         */
6946      Group* File::GetFirstGroup() {      Group* File::GetFirstGroup() {
6947          if (!pGroups) LoadGroups();          if (!pGroups) LoadGroups();
6948          // there must always be at least one group          // there must always be at least one group
# Line 6944  namespace { Line 6950  namespace {
6950          return *GroupsIterator;          return *GroupsIterator;
6951      }      }
6952    
6953        /**
6954         * Returns a pointer to the next <i>Group</i> object of the file,
6955         * <i>NULL</i> otherwise.
6956         *
6957         * @deprecated  This method is not reentrant-safe, use GetGroup() instead.
6958         */
6959      Group* File::GetNextGroup() {      Group* File::GetNextGroup() {
6960          if (!pGroups) return NULL;          if (!pGroups) return NULL;
6961          ++GroupsIterator;          ++GroupsIterator;

Legend:
Removed from v.3936  
changed lines
  Added in v.3937

  ViewVC Help
Powered by ViewVC