mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
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:
parent
0ce6fa247d
commit
4b95621853
11 changed files with 17 additions and 11 deletions
|
|
@ -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__ */
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue