OpcUaCanOpen
CANopen OPC-UA server
LogSinks.h
Go to the documentation of this file.
1 /* © Copyright CERN, 2015. All rights not expressly granted are reserved.
2  * LogSinks.h
3  *
4  * Created on: Aug 18, 2015
5  * Author: Benjamin Farnham <benjamin.farnham@cern.ch>
6  *
7  * This file is part of Quasar.
8  *
9  * Quasar is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public Licence as published by
11  * the Free Software Foundation, either version 3 of the Licence.
12  *
13  * Quasar is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU Lesser General Public Licence for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with Quasar. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef SRC_INCLUDE_LOGSINKS_H_
23 #define SRC_INCLUDE_LOGSINKS_H_
24 
25 #include <string>
26 #include <vector>
27 #include "LogSinkInterface.h"
28 
29 class LogSinks
30 {
31 public:
32  LogSinks();
33  virtual ~LogSinks();
34  void addSink(LogSinkInterface* sink);
35  void logMessage(const std::string& logMsg);
36 
37 private:
38  std::vector<LogSinkInterface*> m_sinks;
39 };
40 
41 #endif /* SRC_INCLUDE_LOGSINKS_H_ */