mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
Remove "using namespace" from header (part 2)
This commit is contained in:
parent
3a6f822381
commit
0083c8fb9f
1 changed files with 2 additions and 4 deletions
|
|
@ -30,14 +30,12 @@
|
||||||
#include "ardour/audiofilesource.h"
|
#include "ardour/audiofilesource.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
namespace ARDOUR {
|
namespace ARDOUR {
|
||||||
|
|
||||||
class LIBARDOUR_API CoreAudioSource : public AudioFileSource {
|
class LIBARDOUR_API CoreAudioSource : public AudioFileSource {
|
||||||
public:
|
public:
|
||||||
CoreAudioSource (ARDOUR::Session&, const XMLNode&);
|
CoreAudioSource (ARDOUR::Session&, const XMLNode&);
|
||||||
CoreAudioSource (ARDOUR::Session&, const string& path, int chn, Flag);
|
CoreAudioSource (ARDOUR::Session&, const std::string& path, int chn, Flag);
|
||||||
~CoreAudioSource ();
|
~CoreAudioSource ();
|
||||||
|
|
||||||
void set_path (const std::string& p);
|
void set_path (const std::string& p);
|
||||||
|
|
@ -53,7 +51,7 @@ class LIBARDOUR_API CoreAudioSource : public AudioFileSource {
|
||||||
|
|
||||||
void flush () {}
|
void flush () {}
|
||||||
|
|
||||||
static int get_soundfile_info (string path, SoundFileInfo& _info, string& error_msg);
|
static int get_soundfile_info (std::string path, SoundFileInfo& _info, std::string& error_msg);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void close ();
|
void close ();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue