Mercurial > audlegacy
diff Plugins/Input/adplug/core/fprovide.h @ 1376:c71e2ef2dcf4 trunk
[svn] Security fixes from AdPlug CVS (their July 7 commit shortly before the secunia announcement).
author | chainsaw |
---|---|
date | Sat, 08 Jul 2006 08:29:18 -0700 |
parents | 0a73d1faeb4e |
children | f12d7e208b43 |
line wrap: on
line diff
--- a/Plugins/Input/adplug/core/fprovide.h Fri Jul 07 12:42:32 2006 -0700 +++ b/Plugins/Input/adplug/core/fprovide.h Sat Jul 08 08:29:18 2006 -0700 @@ -1,6 +1,6 @@ /* * Adplug - Replayer for many OPL2/OPL3 audio file formats. - * Copyright (C) 1999 - 2002 Simon Peter, <dn.tlp@gmx.net>, et al. + * Copyright (C) 1999 - 2006 Simon Peter, <dn.tlp@gmx.net>, et al. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -28,7 +28,10 @@ class CFileProvider { public: - virtual ~CFileProvider() { } + virtual ~CFileProvider() + { + } + virtual binistream *open(std::string) const = 0; virtual void close(binistream *) const = 0; @@ -40,7 +43,6 @@ class CProvider_Filesystem: public CFileProvider { public: - virtual ~CProvider_Filesystem() { } virtual binistream *open(std::string filename) const; virtual void close(binistream *f) const; };