Changed 'virtual' function override declarations to 'override'.
[platform/core/uifw/dali-adaptor.git] / dali / internal / trace / tizen / trace-manager-impl-tizen.h
1 #ifndef DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_H
2 #define DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_H
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22
23 // INTERNAL INCLUDES
24 #include <dali/internal/trace/common/trace-manager-impl.h>
25
26 namespace Dali
27 {
28
29 namespace Internal
30 {
31
32 namespace Adaptor
33 {
34 class PerformanceInterface;
35
36 class TraceManagerTizen : public Dali::Internal::Adaptor::TraceManager
37 {
38 public:
39   /**
40    * Explicit Constructor
41    */
42   explicit TraceManagerTizen( PerformanceInterface* performanceInterface );
43
44 protected:
45
46   /**
47    * Destructor
48    */
49   ~TraceManagerTizen() override = default;
50
51   /**
52    * Obtain the LogContextFunction method (Tizen specific) used for tracing
53    */
54   Dali::Integration::Trace::LogContextFunction GetLogContextFunction() final;
55
56 private:
57
58   /**
59    * LogContext method (Tizen specific) used for tracing
60    */
61   static void LogContext( bool start, const char* tag );
62 };
63
64 } // namespace Adaptor
65
66 } // namespace Internal
67
68 } // namespace Dali
69
70 #endif // DALI_INTERNAL_TRACE_MANAGER_IMPL_TIZEN_H