Init basesystem source codes.
[staging/basesystem.git] / stub / diag_record / library_record_thread / src / pfdrec_thread.cpp
1 /*
2  * @copyright Copyright (c) 2019-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include "pfdrec_thread_ifc.h"
17
18 CPFDRECThread::CPFDRECThread()
19 : m_thread(NULL) {
20   /*
21    *  Note.
22    *  This feature needs to be implemented by the vendor.
23    */
24 }
25
26 CPFDRECThread::~CPFDRECThread() {
27   /*
28    *  Note.
29    *  This feature needs to be implemented by the vendor.
30    */
31 }
32
33 EFrameworkunifiedStatus CPFDRECThread::Initialize(HANDLE h_app) {
34   /*
35    *  Note.
36    *  This feature needs to be implemented by the vendor.
37    */
38     return eFrameworkunifiedStatusOK;
39 }
40
41
42 EFrameworkunifiedStatus CPFDRECThread::Finalize(HANDLE h_app) {
43   /*
44    *  Note.
45    *  This feature needs to be implemented by the vendor.
46    */
47     return eFrameworkunifiedStatusOK;
48 }
49
50
51 EFrameworkunifiedStatus CPFDRECThread::Start(HANDLE h_thread) {
52   /*
53    *  Note.
54    *  This feature needs to be implemented by the vendor.
55    */
56     return eFrameworkunifiedStatusOK;
57 }
58
59 EFrameworkunifiedStatus CPFDRECThread::Stop(HANDLE h_thread) {
60   /*
61    *  Note.
62    *  This feature needs to be implemented by the vendor.
63    */
64     return eFrameworkunifiedStatusOK;
65 }
66
67 EFrameworkunifiedStatus CPFDRECThread::SetFuncOnOff(HANDLE h_thread) {
68   /*
69    *  Note.
70    *  This feature needs to be implemented by the vendor.
71    */
72     return eFrameworkunifiedStatusOK;
73 }
74
75 EFrameworkunifiedStatus CPFDRECThread::GetFuncOnOff(HANDLE h_thread) {
76   /*
77    *  Note.
78    *  This feature needs to be implemented by the vendor.
79    */
80     return eFrameworkunifiedStatusOK;
81 }
82
83 EFrameworkunifiedStatus CPFDRECThread::DeleteData(HANDLE h_thread) {
84   /*
85    *  Note.
86    *  This feature needs to be implemented by the vendor.
87    */
88     return eFrameworkunifiedStatusOK;
89 }
90
91 EFrameworkunifiedStatus CPFDRECThread::DeleteIndividual(HANDLE hThread) {
92   /*
93    *  Note.
94    *  This feature needs to be implemented by the vendor.
95    */
96     return eFrameworkunifiedStatusOK;
97 }
98
99
100 EFrameworkunifiedStatus CPFDRECThread::ComDataBackup(HANDLE h_thread) {
101   /*
102    *  Note.
103    *  This feature needs to be implemented by the vendor.
104    */
105     return eFrameworkunifiedStatusOK;
106 }
107
108 EFrameworkunifiedStatus CPFDRECThread::ReadMemData(HANDLE h_thread) {
109   /*
110    *  Note.
111    *  This feature needs to be implemented by the vendor.
112    */
113     return eFrameworkunifiedStatusOK;
114 }
115
116 EFrameworkunifiedStatus CPFDRECThread::GetDataInfo(HANDLE h_thread) {
117   /*
118    *  Note.
119    *  This feature needs to be implemented by the vendor.
120    */
121     return eFrameworkunifiedStatusOK;
122 }
123
124 EFrameworkunifiedStatus CPFDRECThread::OutputData(HANDLE h_thread) {
125   /*
126    *  Note.
127    *  This feature needs to be implemented by the vendor.
128    */
129     return eFrameworkunifiedStatusOK;
130 }
131
132 EFrameworkunifiedStatus CPFDRECThread::ReadData(HANDLE h_thread) {
133   /*
134    *  Note.
135    *  This feature needs to be implemented by the vendor.
136    */
137     return eFrameworkunifiedStatusOK;
138 }
139
140 EFrameworkunifiedStatus CPFDRECThread::SearchData(HANDLE h_thread) {
141   /*
142    *  Note.
143    *  This feature needs to be implemented by the vendor.
144    */
145     return eFrameworkunifiedStatusOK;
146 }
147
148 EFrameworkunifiedStatus CPFDRECThread::OverwriteData(HANDLE h_thread) {
149   /*
150    *  Note.
151    *  This feature needs to be implemented by the vendor.
152    */
153     return eFrameworkunifiedStatusOK;
154 }
155
156 EFrameworkunifiedStatus CPFDRECThread::SetExtractMode(HANDLE h_thread) {
157   /*
158    *  Note.
159    *  This feature needs to be implemented by the vendor.
160    */
161     return eFrameworkunifiedStatusOK;
162 }