Blame engine/scanner_fwd.hpp

Packit 209faa
// Copyright 2015 The Kyua Authors.
Packit 209faa
// All rights reserved.
Packit 209faa
//
Packit 209faa
// Redistribution and use in source and binary forms, with or without
Packit 209faa
// modification, are permitted provided that the following conditions are
Packit 209faa
// met:
Packit 209faa
//
Packit 209faa
// * Redistributions of source code must retain the above copyright
Packit 209faa
//   notice, this list of conditions and the following disclaimer.
Packit 209faa
// * Redistributions in binary form must reproduce the above copyright
Packit 209faa
//   notice, this list of conditions and the following disclaimer in the
Packit 209faa
//   documentation and/or other materials provided with the distribution.
Packit 209faa
// * Neither the name of Google Inc. nor the names of its contributors
Packit 209faa
//   may be used to endorse or promote products derived from this software
Packit 209faa
//   without specific prior written permission.
Packit 209faa
//
Packit 209faa
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 209faa
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 209faa
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 209faa
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit 209faa
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 209faa
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 209faa
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 209faa
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 209faa
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 209faa
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 209faa
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 209faa
Packit 209faa
/// \file engine/scanner_fwd.hpp
Packit 209faa
/// Forward declarations for engine/scanner.hpp
Packit 209faa
Packit 209faa
#if !defined(ENGINE_SCANNER_FWD_HPP)
Packit 209faa
#define ENGINE_SCANNER_FWD_HPP
Packit 209faa
Packit 209faa
#include <string>
Packit 209faa
#include <utility>
Packit 209faa
Packit 209faa
#include "model/test_program_fwd.hpp"
Packit 209faa
Packit 209faa
namespace engine {
Packit 209faa
Packit 209faa
Packit 209faa
/// Result type yielded by the scanner: a (test program, test case name) pair.
Packit 209faa
///
Packit 209faa
/// We must use model::test_program_ptr here instead of model::test_program
Packit 209faa
/// because we must keep the polimorphic properties of the test program.  In
Packit 209faa
/// particular, if the test program comes from the Kyuafile and is of the type
Packit 209faa
/// model::lazy_test_program, we must keep access to the loaded list of test
Packit 209faa
/// cases (which, for obscure reasons, is kept in the subclass).
Packit 209faa
/// TODO(jmmv): This is ugly, very ugly.  There has to be a better way.
Packit 209faa
typedef std::pair< model::test_program_ptr, std::string > scan_result;
Packit 209faa
Packit 209faa
Packit 209faa
class scanner;
Packit 209faa
Packit 209faa
Packit 209faa
}  // namespace engine
Packit 209faa
Packit 209faa
#endif  // !defined(ENGINE_SCANNER_FWD_HPP)