summaryrefslogtreecommitdiff
path: root/contrib/utility/Utility/ExH/Compound.hpp
blob: 664583fffb2fef267bbe679ba1cf83421a8384f1 (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
// file      : Utility/ExH/Compound.hpp
// author    : Boris Kolpackov <boris@kolpackov.net>
// copyright : Copyright (c) 2002-2003 Boris Kolpackov
// license   : http://kolpackov.net/license.html

#ifndef UTILITY_EX_H_COMPOUND_HPP
#define UTILITY_EX_H_COMPOUND_HPP

#include <string>

namespace Utility
{
  namespace ExH
  {
    template <typename Type, typename Base>
    class Compound : public virtual Base
    {
    public:
      explicit
      Compound (char const* description) throw ();

      explicit
      Compound (std::string const& description) throw ();

      template <typename T>
      explicit
      Compound (T const& description) throw ();

      Compound (Compound const& src) throw ();

      virtual
      ~Compound () throw ();

    public:
      Compound&
      operator= (Compound const& src) throw ();

    protected:
      Compound () throw ();
    };
  }
}

#include "Utility/ExH/Compound.tpp"

#endif  // UTILITY_EX_H_COMPOUND_HPP
//$Id$