24 #ifndef __DAAL_HOST_APP_H__
25 #define __DAAL_HOST_APP_H__
27 #include "services/daal_defines.h"
28 #include "services/base.h"
29 #include "services/daal_shared_ptr.h"
47 class DAAL_EXPORT HostAppIface :
public Base
52 virtual ~HostAppIface();
58 virtual bool isCancelled() = 0;
63 typedef services::SharedPtr<HostAppIface> HostAppIfacePtr;
66 using interface1::HostAppIface;
67 using interface1::HostAppIfacePtr;
71 #endif //__DAAL_HOST_APP_H__
daal::Base
Base class for Intel(R) Data Analytics Acceleration Library objects
Definition: base.h:41
daal::services::interface1::HostAppIface
Abstract class which defines callback interface for the host application of this library to enable su...
Definition: host_app.h:47