Skip to content
Snippets Groups Projects
Commit 1b8bb3ce authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Win compilation fixes

parent a4027601
No related branches found
No related tags found
No related merge requests found
...@@ -15,15 +15,15 @@ ...@@ -15,15 +15,15 @@
#ifndef FITOBSERVER_H #ifndef FITOBSERVER_H
#define FITOBSERVER_H #define FITOBSERVER_H
#include "WinDllMacros.h"
#include "FitTypes.h" #include "FitTypes.h"
#include <functional>
#include <vector> #include <vector>
//! Contains collection of observers and call them at specified intervals. //! Contains collection of observers and call them at specified intervals.
//! Each observer will be called at first iteration and every-nth iterations. //! Each observer will be called at first iteration and every-nth iterations.
template <class T> template <class T>
class BA_CORE_API_ FitObserver class FitObserver
{ {
public: public:
using observer_t = std::function<void(const T&)>; using observer_t = std::function<void(const T&)>;
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include "WinDllMacros.h" #include "WinDllMacros.h"
#include "TimeInterval.h" #include "TimeInterval.h"
#include <string>
class FitObjective; class FitObjective;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment