xref: /freebsd/contrib/atf/atf-c++/build.hpp (revision c243e4902be8df1e643c76b5f18b68bb77cc5268)
1*c243e490SMarcel Moolenaar //
2*c243e490SMarcel Moolenaar // Automated Testing Framework (atf)
3*c243e490SMarcel Moolenaar //
4*c243e490SMarcel Moolenaar // Copyright (c) 2009 The NetBSD Foundation, Inc.
5*c243e490SMarcel Moolenaar // All rights reserved.
6*c243e490SMarcel Moolenaar //
7*c243e490SMarcel Moolenaar // Redistribution and use in source and binary forms, with or without
8*c243e490SMarcel Moolenaar // modification, are permitted provided that the following conditions
9*c243e490SMarcel Moolenaar // are met:
10*c243e490SMarcel Moolenaar // 1. Redistributions of source code must retain the above copyright
11*c243e490SMarcel Moolenaar //    notice, this list of conditions and the following disclaimer.
12*c243e490SMarcel Moolenaar // 2. Redistributions in binary form must reproduce the above copyright
13*c243e490SMarcel Moolenaar //    notice, this list of conditions and the following disclaimer in the
14*c243e490SMarcel Moolenaar //    documentation and/or other materials provided with the distribution.
15*c243e490SMarcel Moolenaar //
16*c243e490SMarcel Moolenaar // THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17*c243e490SMarcel Moolenaar // CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18*c243e490SMarcel Moolenaar // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19*c243e490SMarcel Moolenaar // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20*c243e490SMarcel Moolenaar // IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21*c243e490SMarcel Moolenaar // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*c243e490SMarcel Moolenaar // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23*c243e490SMarcel Moolenaar // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24*c243e490SMarcel Moolenaar // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25*c243e490SMarcel Moolenaar // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26*c243e490SMarcel Moolenaar // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27*c243e490SMarcel Moolenaar // IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*c243e490SMarcel Moolenaar //
29*c243e490SMarcel Moolenaar 
30*c243e490SMarcel Moolenaar #if !defined(_ATF_CXX_BUILD_HPP_)
31*c243e490SMarcel Moolenaar #define _ATF_CXX_BUILD_HPP_
32*c243e490SMarcel Moolenaar 
33*c243e490SMarcel Moolenaar #include <string>
34*c243e490SMarcel Moolenaar 
35*c243e490SMarcel Moolenaar namespace atf {
36*c243e490SMarcel Moolenaar 
37*c243e490SMarcel Moolenaar namespace process {
38*c243e490SMarcel Moolenaar class argv_array;
39*c243e490SMarcel Moolenaar } // namespace process
40*c243e490SMarcel Moolenaar 
41*c243e490SMarcel Moolenaar namespace build {
42*c243e490SMarcel Moolenaar 
43*c243e490SMarcel Moolenaar // ------------------------------------------------------------------------
44*c243e490SMarcel Moolenaar // Free functions.
45*c243e490SMarcel Moolenaar // ------------------------------------------------------------------------
46*c243e490SMarcel Moolenaar 
47*c243e490SMarcel Moolenaar process::argv_array c_o(const std::string&, const std::string&,
48*c243e490SMarcel Moolenaar                         const process::argv_array&);
49*c243e490SMarcel Moolenaar process::argv_array cpp(const std::string&, const std::string&,
50*c243e490SMarcel Moolenaar                         const process::argv_array&);
51*c243e490SMarcel Moolenaar process::argv_array cxx_o(const std::string&, const std::string&,
52*c243e490SMarcel Moolenaar                           const process::argv_array&);
53*c243e490SMarcel Moolenaar 
54*c243e490SMarcel Moolenaar } // namespace build
55*c243e490SMarcel Moolenaar } // namespace atf
56*c243e490SMarcel Moolenaar 
57*c243e490SMarcel Moolenaar #endif // !defined(_ATF_CXX_BUILD_HPP_)
58