Drive Engine  1.0.0
Plateforme de reconstruction 3D
DefaultImageList.h
1 // Copyright (c) 2015. All rights reserved to DriveEngine Team.
2 
3 #pragma once
4 
5 #include "Public/Collections/IImageList.h"
6 #include "Public/Datatypes/IImage.h"
7 #include "Public/ImplementationUtilities/ListImplementationUtilities.h"
8 #include "Public/ImplementationUtilities/ImplementationUtilities.h"
9 #include <map>
10 #include <string>
11 
12 namespace DriveEngine
13 {
20  {
21  CONSTRUCTOR_H(IImageList, DefaultImageList);
22  DESTRUCTOR_H(DefaultImageList);
23 
24  GENERATE_LIST_H(IImage);
25  };
26 }
The image datatype interface.
Definition: IImage.h:22
Definition: DefaultCalibrationInfoList.h:12
Default implementation of the images list.
Definition: DefaultImageList.h:19
Interface of list of images.
Definition: IImageList.h:13