From b44cea23fc4b122f838c3a8248ceeb592a747699 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Tue, 16 Apr 2013 19:31:57 +0000 Subject: QPID-3921: Move code from Statement.h to Statement.cpp So it won't slow down the build anymore. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1468574 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/include/qpid/log/Statement.h | 59 ----------------------------------- 1 file changed, 59 deletions(-) (limited to 'qpid/cpp/include') diff --git a/qpid/cpp/include/qpid/log/Statement.h b/qpid/cpp/include/qpid/log/Statement.h index ad84d66db6..e928e19f22 100644 --- a/qpid/cpp/include/qpid/log/Statement.h +++ b/qpid/cpp/include/qpid/log/Statement.h @@ -22,7 +22,6 @@ #include "qpid/Msg.h" #include "qpid/CommonImportExport.h" #include -#include namespace qpid { namespace log { @@ -100,64 +99,6 @@ struct CategoryTraits { static const char* name(Category); }; - -class CategoryFileNameHints { -public: - CategoryFileNameHints(){ - hintList.push_back(std::make_pair("AsynchIo", network)); - hintList.push_back(std::make_pair("TCP", network)); - hintList.push_back(std::make_pair("epoll", network)); - hintList.push_back(std::make_pair("Pollable", network)); - hintList.push_back(std::make_pair("Socket", network)); - - hintList.push_back(std::make_pair("Sasl", security)); - hintList.push_back(std::make_pair("Ssl", security)); - hintList.push_back(std::make_pair("Acl", security)); - hintList.push_back(std::make_pair("acl", security)); - hintList.push_back(std::make_pair("cyrus", security)); - - hintList.push_back(std::make_pair("amqp_", protocol)); - hintList.push_back(std::make_pair("framing", protocol)); - - hintList.push_back(std::make_pair("management", management)); - hintList.push_back(std::make_pair("qmf", management)); - hintList.push_back(std::make_pair("console", management)); - hintList.push_back(std::make_pair("Management", management)); - - hintList.push_back(std::make_pair("cluster", ha)); - hintList.push_back(std::make_pair("qpid/ha", ha)); - hintList.push_back(std::make_pair("qpid\\ha", ha)); - hintList.push_back(std::make_pair("replication", ha)); - hintList.push_back(std::make_pair("ClusterSafe", ha)); - - hintList.push_back(std::make_pair("broker", broker)); - hintList.push_back(std::make_pair("SessionState",broker)); - hintList.push_back(std::make_pair("DataDir", broker)); - hintList.push_back(std::make_pair("qpidd", broker)); - hintList.push_back(std::make_pair("xml", broker)); - hintList.push_back(std::make_pair("QpidBroker", broker)); - - hintList.push_back(std::make_pair("store", store)); - - hintList.push_back(std::make_pair("assert", system)); - hintList.push_back(std::make_pair("Exception", system)); - hintList.push_back(std::make_pair("sys", system)); - hintList.push_back(std::make_pair("SCM", system)); - - hintList.push_back(std::make_pair("tests", test)); - - hintList.push_back(std::make_pair("messaging", messaging)); - hintList.push_back(std::make_pair("types", messaging)); - - hintList.push_back(std::make_pair("client", client)); - } - - static Category categoryOf(const char*const fName); - -private: - std::list > hintList; -}; - /** POD struct representing a logging statement in source code. */ struct Statement { bool enabled; -- cgit v1.2.1