summaryrefslogtreecommitdiff
path: root/db/repl/rs_optime.h
diff options
context:
space:
mode:
authorDwight Merriman <dwight@10gen.com>2010-05-29 15:45:47 -0400
committerDwight Merriman <dwight@10gen.com>2010-05-29 15:45:47 -0400
commita403fb5de82290fc76e81591b33b5b9d5d69b88e (patch)
tree29820a6c8c79564835a1eb62bcfcad1592e15875 /db/repl/rs_optime.h
parentdbe11eec88a8aa65665f26251163b33a4f85fb7e (diff)
downloadmongo-a403fb5de82290fc76e81591b33b5b9d5d69b88e.tar.gz
clean up some file names rs
Diffstat (limited to 'db/repl/rs_optime.h')
-rw-r--r--db/repl/rs_optime.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/repl/rs_optime.h b/db/repl/rs_optime.h
new file mode 100644
index 00000000000..46cb261f1f4
--- /dev/null
+++ b/db/repl/rs_optime.h
@@ -0,0 +1,12 @@
+// @file rs_optime.h
+
+#pragma once
+
+namespace mongo {
+
+ struct rsoptime {
+ unsigned long long ord;
+ void reset() { ord = ~0; }
+ };
+
+}