summaryrefslogtreecommitdiff
path: root/db/storage.h
diff options
context:
space:
mode:
authorunknown <dwight@.(none)>2009-01-31 17:27:25 -0500
committerunknown <dwight@.(none)>2009-01-31 17:27:25 -0500
commit9e9eb0cec78ebf31ccaf5fd077ff68bf77d4a622 (patch)
treefc7944976cb56891177fee8914ac815234ffe53d /db/storage.h
parentd1dda486efc7a4f909c477b0dab27c8468a78024 (diff)
downloadmongo-9e9eb0cec78ebf31ccaf5fd077ff68bf77d4a622.tar.gz
abstracting out record storage for btree
Diffstat (limited to 'db/storage.h')
-rw-r--r--db/storage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/storage.h b/db/storage.h
index 9a0e8b55750..65fe5d3617d 100644
--- a/db/storage.h
+++ b/db/storage.h
@@ -31,7 +31,7 @@ namespace mongo {
class Extent;
class BtreeBucket;
class BSONObj;
- class PhysicalDataFile;
+ class MongoDataFile;
class DiskLoc {
int fileNo; /* this will be volume, file #, etc. */
@@ -141,7 +141,7 @@ namespace mongo {
Extent* ext() const;
BtreeBucket* btree() const;
- PhysicalDataFile& pdf() const;
+ MongoDataFile& pdf() const;
};
#pragma pack(pop)