aboutsummaryrefslogtreecommitdiff
path: root/framework/printers/Printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'framework/printers/Printer.cpp')
-rw-r--r--framework/printers/Printer.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/framework/printers/Printer.cpp b/framework/printers/Printer.cpp
deleted file mode 100644
index e034c2ed43..0000000000
--- a/framework/printers/Printer.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright (c) 2017 ARM Limited.
- *
- * SPDX-License-Identifier: MIT
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-#include "Printer.h"
-
-namespace arm_compute
-{
-namespace test
-{
-namespace framework
-{
-Printer::Printer(std::ostream &stream)
- : _stream{ &stream }
-{
-}
-
-void Printer::print(const std::string &str)
-{
- *_stream << str;
-}
-
-void Printer::set_stream(std::ostream &stream)
-{
- _stream = &stream;
-}
-} // namespace framework
-} // namespace test
-} // namespace arm_compute