]> git.lyx.org Git - lyx.git/blobdiff - src/counters.h
Scons: update_po target, part one: language_l10n.pot
[lyx.git] / src / counters.h
index 5fa2670133ed555ae4b2328fd43908b372834355..cc13276771aaeb37fad55584182dd3fc2dd9b800 100644 (file)
@@ -19,6 +19,9 @@
 
 #include <map>
 
+
+namespace lyx {
+
 /// This represents a single counter.
 class Counter {
 public:
@@ -35,7 +38,7 @@ public:
        ///
        void reset();
        /// Returns the master counter of this counter
-       lyx::docstring master() const;
+       lyx::docstring const & master() const;
        /// sets the master counter for this counter
        void setMaster(lyx::docstring const & m);
 private:
@@ -91,4 +94,7 @@ private:
 
 };
 
+
+} // namespace lyx
+
 #endif