Artec 3D Scanning SDK  2.0
IAlgorithm.h
Go to the documentation of this file.
1 /********************************************************************
2 *
3 * Project Artec 3D Scanning SDK
4 *
5 * Purpose: Algorithm interface.
6 *
7 * Copyright: Artec Group
8 *
9 ********************************************************************/
10 
11 #ifndef _IALGORITHM_H_
12 #define _IALGORITHM_H_
13 
14 #include <artec/sdk/base/IJob.h>
15 
16 namespace artec { namespace sdk { namespace algorithms
17 {
18 
19 /**
20 * Base interface for algorithms.
21 * It supports smart reference counting.
22 */
24 {
25 public:
26 
27 };
28 
29 } } } // namespace artec::sdk::algorithms
30 
31 #endif // _IALGORITHM_H_
Interface that represents a basic multithreaded work item; Used by executeJob and launchJob...
Definition: IJob.h:51
Base interface for algorithms.
Definition: IAlgorithm.h:23