IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseInputMandatoryValueAttribute.h
1 // BaseInputMandatoryValueAttribute.h:
3 // -----------------------------------
4 //
14 
15 #ifndef __IPSDKBASEPROCESSING_BASEINPUTMANDATORYVALUEATTRIBUTE_H__
16 #define __IPSDKBASEPROCESSING_BASEINPUTMANDATORYVALUEATTRIBUTE_H__
17 
18 #include <IPSDKBaseProcessing/Attribute/Value/Input/BaseInputValueAttribute.h>
19 
20 namespace ipsdk {
21 namespace processor {
22 
25 
26 template <typename T>
28 {
29  // declare serial class
31 
32  // declare mandatory data
34 
35 // constructor and destructor
36 protected:
39 public:
41  virtual ~BaseInputMandatoryValueAttribute() = 0;
42 
43 // methods
44 public:
45 
46 // attributes
47 protected:
48 
49 };
50 
53 
54 } // end of namespace processor
55 } // end of namespace ipsdk
56 
57 #endif // __IPSDKBASEPROCESSING_BASEINPUTMANDATORYVALUEATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
#define IPSDKBASEPROCESSING_API
Import/Export macro for library IPSDKBaseProcessing.
Definition: IPSDKBaseProcessingExports.h:27
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
Base class for input value attributes.
Definition: BaseInputValueAttribute.h:27
Base class for input mandatory value attributes.
Definition: BaseInputMandatoryValueAttribute.h:27
#define IPSDK_DECLARE_MANDATORY_DATA()
macro allowing to declare a mandatory data
Definition: DataStatusHdrMacros.h:146