1 #ifndef DALI_DEMO_EXAMPLE_H
\r
2 #define DALI_DEMO_EXAMPLE_H
\r
5 * Copyright (c) 2021 Samsung Electronics Co., Ltd.
\r
7 * Licensed under the Apache License, Version 2.0 (the "License");
\r
8 * you may not use this file except in compliance with the License.
\r
9 * You may obtain a copy of the License at
\r
11 * http://www.apache.org/licenses/LICENSE-2.0
\r
13 * Unless required by applicable law or agreed to in writing, software
\r
14 * distributed under the License is distributed on an "AS IS" BASIS,
\r
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
16 * See the License for the specific language governing permissions and
\r
17 * limitations under the License.
\r
21 // EXTERNAL INCLUDES
\r
26 * Example information
\r
28 * Represents a single Example.
\r
35 * @param[in] uniqueName unique name of example
\r
36 * @param[in] captionTitle The caption for the example to appear on a tile button.
\r
38 Example(std::string uniqueName, std::string captionTitle)
\r
44 ~Example() = default;
\r
48 std::string name; ///< unique name of example
\r
49 std::string title; ///< title (caption) of example to appear on tile button.
\r
52 using ExampleList = std::vector<Example>;
\r
53 using ExampleListConstIter = ExampleList::const_iterator;
\r
55 #endif // DALI_DEMO_SHARED_EXAMPLE_H
\r