1# Copyright David Abrahams 2004. Distributed under the Boost
2# Software License, Version 1.0. (See accompanying
3# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4from b2.build import type as type_
5
6
7type_.register_type('CPP', ['cpp', 'cxx', 'cc'])
8type_.register_type('H', ['h'])
9type_.register_type('HPP', ['hpp'], 'H')
10type_.register_type('C', ['c'])
11