trikRuntime
stubOutputDeviceFile.h
Go to the documentation of this file.
1 /* Copyright 2015 CyberTech Labs Ltd.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License. */
14 
15 #pragma once
16 
17 #include <QtCore/QString>
18 #include <QtCore/QFile>
19 
21 
22 namespace trikHal {
23 namespace stub {
24 
27 {
28 public:
31  explicit StubOutputDeviceFile(const QString &fileName);
32 
33  bool open() override;
34  void close() override;
35  void write(const QString &data) override;
36  QString fileName() const override;
37 
38 private:
39  QFile mFile;
40 };
41 
42 }
43 }
void write(const QString &data) override
Write data to a file using UTF-8 encoding.
Definition: stubOutputDeviceFile.cpp:37
void close() override
Close a file.
Definition: stubOutputDeviceFile.cpp:32
bool open() override
Open a file. File name must be set previously.
Definition: stubOutputDeviceFile.cpp:26
Output device file abstraction.
Definition: outputDeviceFileInterface.h:23
QString fileName() const override
Returns name of a file.
Definition: stubOutputDeviceFile.cpp:42
StubOutputDeviceFile(const QString &fileName)
Constructor.
Definition: stubOutputDeviceFile.cpp:21
Empty implementation of output device file. Only logs operations.
Definition: stubOutputDeviceFile.h:26
Definition: brickFactory.h:21