Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / utility / messagestringcollector.h
index c0131f52e485c0d05cdd8ec9e7bec41da046e1c3..ee56774f867baa21b65017596346ca766daa87f9 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2011,2012,2013,2014, by the GROMACS development team, led by
+ * Copyright (c) 2011,2012,2013,2014,2019, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
@@ -61,63 +61,61 @@ namespace gmx
  */
 class MessageStringCollector
 {
-    public:
-        MessageStringCollector();
-        ~MessageStringCollector();
+public:
+    MessageStringCollector();
+    ~MessageStringCollector();
 
-        /*! \brief
-         * Starts a context for messages.
-         *
-         * \param[in] name  Short description of the context.
-         *
-         * \see finishContext()
-         * \see MessageStringContext
-         */
-        void startContext(const char *name);
-        /*! \brief
-         * Convenience wrapper for startContext(const char *).
-         */
-        void startContext(const std::string &name)
-        { startContext(name.c_str()); }
-        /*! \brief
-         * Adds a new message.
-         */
-        void append(const char *message)
-        { append(std::string(message)); }
-        /*! \brief
-         * Adds a new message.
-         */
-        void append(const std::string &message);
-        /*! \brief
-         * Ends a context started with startContext().
-         *
-         * \see MessageStringContext
-         */
-        void finishContext();
-        /*! \brief
-         * Clears all collected messages.
-         */
-        void clear();
+    /*! \brief
+     * Starts a context for messages.
+     *
+     * \param[in] name  Short description of the context.
+     *
+     * \see finishContext()
+     * \see MessageStringContext
+     */
+    void startContext(const char* name);
+    /*! \brief
+     * Convenience wrapper for startContext(const char *).
+     */
+    void startContext(const std::string& name) { startContext(name.c_str()); }
+    /*! \brief
+     * Adds a new message.
+     */
+    void append(const char* message) { append(std::string(message)); }
+    /*! \brief
+     * Adds a new message.
+     */
+    void append(const std::string& message);
+    /*! \brief
+     * Ends a context started with startContext().
+     *
+     * \see MessageStringContext
+     */
+    void finishContext();
+    /*! \brief
+     * Clears all collected messages.
+     */
+    void clear();
 
-        /*! \brief
-         * Returns true if any messages have been added.
-         *
-         * \returns true if append() has been called at least once.
-         *
-         * The return value is identical to `toString().empty()`.
-         * Calls to startContext() or finishContext() only do not cause this
-         * function to return true.
-         */
-        bool isEmpty() const;
-        /*! \brief
-         * Returns all collected messages as one string.
-         */
-        std::string toString() const;
+    /*! \brief
+     * Returns true if any messages have been added.
+     *
+     * \returns true if append() has been called at least once.
+     *
+     * The return value is identical to `toString().empty()`.
+     * Calls to startContext() or finishContext() only do not cause this
+     * function to return true.
+     */
+    bool isEmpty() const;
+    /*! \brief
+     * Returns all collected messages as one string.
+     */
+    std::string toString() const;
 
-    private:
-        class Impl;
+private:
+    class Impl;
 
-        PrivateImplPointer<Impl> impl_;
+    PrivateImplPointer<Impl> impl_;
 };
 
 /*! \libinternal \brief
@@ -147,37 +145,33 @@ class MessageStringCollector
  */
 class MessageStringContext
 {
-    public:
-        /*! \brief
-         * Adds a context for the given object.
-         */
-        MessageStringContext(MessageStringCollector *collector, const char *name)
-            : collector_(*collector)
-        {
-            collector_.startContext(name);
-        }
-        /*! \brief
-         * Adds a context for the given object.
-         */
-        MessageStringContext(MessageStringCollector *collector,
-                             const std::string      &name)
-            : collector_(*collector)
-        {
-            collector_.startContext(name);
-        }
-        /*! \brief
-         * Calls MessageStringCollector::finishContext() on the wrapped object.
-         */
-        ~MessageStringContext()
-        {
-            collector_.finishContext();
-        }
+public:
+    /*! \brief
+     * Adds a context for the given object.
+     */
+    MessageStringContext(MessageStringCollector* collector, const char* name) :
+        collector_(*collector)
+    {
+        collector_.startContext(name);
+    }
+    /*! \brief
+     * Adds a context for the given object.
+     */
+    MessageStringContext(MessageStringCollector* collector, const std::string& name) :
+        collector_(*collector)
+    {
+        collector_.startContext(name);
+    }
+    /*! \brief
+     * Calls MessageStringCollector::finishContext() on the wrapped object.
+     */
+    ~MessageStringContext() { collector_.finishContext(); }
 
-    private:
-        //! The wrapped object.
-        MessageStringCollector &collector_;
+private:
+    //! The wrapped object.
+    MessageStringCollector& collector_;
 
-        GMX_DISALLOW_COPY_AND_ASSIGN(MessageStringContext);
+    GMX_DISALLOW_COPY_AND_ASSIGN(MessageStringContext);
 };
 
 } // namespace gmx