C++ API Reference for Intel® Data Analytics Acceleration Library 2019 Update 5

input_collection.h
1 /* file: input_collection.h */
2 /*******************************************************************************
3 * Copyright 2014-2019 Intel Corporation.
4 *
5 * This software and the related documents are Intel copyrighted materials, and
6 * your use of them is governed by the express license under which they were
7 * provided to you (License). Unless the License provides otherwise, you may not
8 * use, modify, copy, publish, distribute, disclose or transmit this software or
9 * the related documents without Intel's prior written permission.
10 *
11 * This software and the related documents are provided as is, with no express
12 * or implied warranties, other than those that are expressly stated in the
13 * License.
14 *******************************************************************************/
15 
16 #ifndef __INPUT_COLLECTION_H__
17 #define __INPUT_COLLECTION_H__
18 
19 #include "algorithms/algorithm_types.h"
20 #include "data_management/data/data_collection.h"
21 
22 namespace daal
23 {
24 namespace data_management
25 {
26 
27 namespace interface1
28 {
29 
30 typedef KeyValueCollection<algorithms::Input> KeyValueInputCollection;
31 typedef services::SharedPtr<KeyValueInputCollection> KeyValueInputCollectionPtr;
32 typedef services::SharedPtr<const KeyValueInputCollection> KeyValueInputCollectionConstPtr;
33 
35 } // namespace interface1
36 using interface1::KeyValueInputCollection;
37 using interface1::KeyValueInputCollectionPtr;
38 using interface1::KeyValueInputCollectionConstPtr;
39 
40 }
41 }
42 
43 #endif
daal
Definition: algorithm_base_common.h:31

For more complete information about compiler optimizations, see our Optimization Notice.