Ocean
Creator1.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7 
8 #ifndef META_OCEAN_CV_SYNTHESIS_CREATOR_1_H
9 #define META_OCEAN_CV_SYNTHESIS_CREATOR_1_H
10 
13 
14 namespace Ocean
15 {
16 
17 namespace CV
18 {
19 
20 namespace Synthesis
21 {
22 
23 /**
24  * This class implements the base class for all creators that support mappings for one frame.
25  * @ingroup cvsynthesis
26  */
27 class Creator1 : virtual public Creator
28 {
29  protected:
30 
31  /**
32  * Creates a new creator object.
33  * @param layer The layer that is used to create the information
34  */
35  inline Creator1(const Layer& layer);
36 };
37 
38 inline Creator1::Creator1(const Layer& layer) :
39  Creator(layer)
40 {
41  // nothing to do here
42 }
43 
44 }
45 
46 }
47 
48 }
49 
50 #endif // META_OCEAN_CV_SYNTHESIS_CREATOR_1_H
This class implements the base class for all creators that support mappings for one frame.
Definition: Creator1.h:28
Creator1(const Layer &layer)
Creates a new creator object.
Definition: Creator1.h:38
This class implements the base class for all creators.
Definition: Creator.h:29
This class implements the base class for all inpainting layers.
Definition: Layer.h:35
The namespace covering the entire Ocean framework.
Definition: Accessor.h:15