clang-format: update c/cc coding style

Update all cc code using .clang-format; please do so as well for future PRs
etc.; emacs has a handy 'clang-format' mode to make this automatic.

For comparing old changes with git blame, we can disregard this one using
--ignore-rev

(see https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame )
This commit is contained in:
Dirk-Jan C. Binnema
2021-10-20 12:18:15 +03:00
parent 09935cc4b3
commit 3dd721d5a3
111 changed files with 13851 additions and 14579 deletions

View File

@ -17,7 +17,6 @@
**
*/
#ifndef MU_SERVER_HH__
#define MU_SERVER_HH__
@ -34,35 +33,35 @@ namespace Mu {
*
*/
class Server {
public:
using Output = std::function<void(Sexp&& sexp)>;
public:
using Output = std::function<void(Sexp&& sexp)>;
/**
* Construct a new server
*
* @param store a message store object
* @param output callable for the server responses.
*/
Server(Store& store, Output output);
/**
* Construct a new server
*
* @param store a message store object
* @param output callable for the server responses.
*/
Server(Store& store, Output output);
/**
* DTOR
*/
~Server();
/**
* DTOR
*/
~Server();
/**
* Invoke a call on the server.
*
* @param expr the s-expression to call
*
* @return true if we the server is still ready for more
* calls, false when it should quit.
*/
bool invoke(const std::string& expr) noexcept;
/**
* Invoke a call on the server.
*
* @param expr the s-expression to call
*
* @return true if we the server is still ready for more
* calls, false when it should quit.
*/
bool invoke(const std::string& expr) noexcept;
private:
struct Private;
std::unique_ptr<Private> priv_;
private:
struct Private;
std::unique_ptr<Private> priv_;
};
} // namespace Mu