Move Stateful class declared in pbd/stateful.h into the PBD namespace

git-svn-id: svn://localhost/ardour2/trunk@2011 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2007-06-17 00:47:33 +00:00
parent 0ce6fa247d
commit 4b95621853
11 changed files with 17 additions and 11 deletions

View file

@ -25,6 +25,8 @@
class XMLNode;
namespace PBD {
class Stateful {
public:
Stateful();
@ -49,5 +51,7 @@ class Stateful {
PBD::ID _id;
};
} // namespace PBD
#endif /* __pbd_stateful_h__ */

View file

@ -26,7 +26,7 @@
#include "i18n.h"
using namespace PBD;
namespace PBD {
Stateful::Stateful ()
{
@ -134,3 +134,5 @@ Stateful::instant_xml (const string& str, const string& dir)
return 0;
}
} // namespace PBD