UDF -> Udf namespace change

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3831 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder
2003-07-04 06:19:29 +00:00
parent 7e57ce9132
commit f0f808aff1
2 changed files with 4 additions and 4 deletions
@@ -1,6 +1,6 @@
#include "PartitionMap.h" #include "PartitionMap.h"
using namespace UDF; using namespace Udf;
/*! \brief Initializes the empty partition map. /*! \brief Initializes the empty partition map.
*/ */
@@ -16,7 +16,7 @@
#include "SLList.h" #include "SLList.h"
namespace UDF { namespace Udf {
class PartitionMap { class PartitionMap {
public: public:
@@ -28,10 +28,10 @@ public:
void dump(); void dump();
private: private:
SLList<UDF::udf_partition_descriptor> fList; SLList<Udf::udf_partition_descriptor> fList;
uint32 fCount; uint32 fCount;
}; };
}; // namespace UDF }; // namespace Udf
#endif // _UDF_PARTITION_MAP_H #endif // _UDF_PARTITION_MAP_H