aboutsummaryrefslogtreecommitdiff
path: root/build/cxx/target
blob: fe17c360f2719b63849e153aae2ccc0e10d08cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// file      : build/cxx/target -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef BUILD_CXX_TARGET
#define BUILD_CXX_TARGET

#include <build/target>

namespace build
{
  namespace cxx
  {
    class hxx: public file
    {
    public:
      using file::file;

    public: virtual const type_info& type_id () const {return ti_;}
    protected: static const type_info ti_;
    };

    class ixx: public file
    {
    public:
      using file::file;

    public: virtual const type_info& type_id () const {return ti_;}
    protected: static const type_info ti_;
    };

    class txx: public file
    {
    public:
      using file::file;

    public: virtual const type_info& type_id () const {return ti_;}
    protected: static const type_info ti_;
    };

    class cxx: public file
    {
    public:
      using file::file;

    public: virtual const type_info& type_id () const {return ti_;}
    protected: static const type_info ti_;
    };
  }
}

#endif // BUILD_CXX_TARGET