blob: 74623d4a32da0b2450b251b76a023d88a7de3bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// file : tracer/include/test2.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TEST2_HXX
#define TEST2_HXX
// Test preference of includes from the main file.
//
#include "objs1.hxx"
#include "obj1.hxx"
#include "obj2.hxx"
#include "obj3.hxx"
#endif // TEST2_HXX
|