MigratoryData Client API for C++
Developer's Guide and Reference Manual
MigratoryDataLogListener.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007-2014 Migratory Data Systems (http://migratorydata.com)
3  * ALL RIGHTS RESERVED. Use is subject to license terms.
4  */
5 #ifndef _MigratoryDataLogListener_h_included_
6 #define _MigratoryDataLogListener_h_included_
7 
8 #include <string>
9 
16 namespace migratorydata {
19 
26 
27  public :
28 
34  virtual void onLog(std::string& log) = 0;
35  };
36 
37 }
38 
39 #endif // _MigratoryDataLogListener_h_included_
40 
The listener interface that you should implement in order to get the logs of the API.
Definition: MigratoryDataLogListener.h:25