1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 /* 3 * This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 */ 7 8 #include "detection_result.hpp" 9 10 namespace orcus { 11 detection_result(bool result)12detection_result::detection_result(bool result) : m_result(result) {} 13 get_result() const14bool detection_result::get_result() const 15 { 16 return m_result; 17 } 18 19 } 20 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ 21