Keep PropertyList outside global namespace
Avoids conflict with FG's GUI widget "PropertyList"... (don't use "using..." in header files since namespaces become useless then)
This commit is contained in:
@@ -22,7 +22,6 @@
|
|||||||
#define __TIEDPROPERTYLIST_HXX
|
#define __TIEDPROPERTYLIST_HXX
|
||||||
#include <simgear/props/props.hxx>
|
#include <simgear/props/props.hxx>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
using simgear::PropertyList;
|
|
||||||
|
|
||||||
namespace simgear {
|
namespace simgear {
|
||||||
|
|
||||||
@@ -31,7 +30,7 @@ namespace simgear {
|
|||||||
* This helper class keeps track of tied properties and unties
|
* This helper class keeps track of tied properties and unties
|
||||||
* each tied property when this class gets destructed.
|
* each tied property when this class gets destructed.
|
||||||
*/
|
*/
|
||||||
class TiedPropertyList : PropertyList {
|
class TiedPropertyList : simgear::PropertyList {
|
||||||
public:
|
public:
|
||||||
TiedPropertyList() {}
|
TiedPropertyList() {}
|
||||||
TiedPropertyList( SGPropertyNode_ptr root ) : _root(root) {}
|
TiedPropertyList( SGPropertyNode_ptr root ) : _root(root) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user