MIDI Clock - Shuffling locate code (not actually used yet)
[ardour.git] / libs / ardour / ardour / comparable_shared_ptr.h
1 /*
2     Copyright (C) 2011 Paul Davis
3     Author: Sakari Bergen
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef __ardour_comparable_shared_ptr_h__
22 #define __ardour_comparable_shared_ptr_h__
23
24 namespace ARDOUR {
25
26 template<typename T>
27 class ComparableSharedPtr : public boost::shared_ptr<T>
28                           , public boost::less_than_comparable<ComparableSharedPtr<T> >
29 {
30   public:
31         ComparableSharedPtr () {}
32         template<class Y>
33         explicit ComparableSharedPtr (Y * p) : boost::shared_ptr<T> (p) {}
34
35         template<class Y, class D>
36         ComparableSharedPtr (Y * p, D d) : boost::shared_ptr<T> (p, d) {}
37
38         template<class Y, class D, class A>
39         ComparableSharedPtr (Y * p, D d, A a) : boost::shared_ptr<T> (p, d, a) {}
40
41         ComparableSharedPtr (ComparableSharedPtr const & r) : boost::shared_ptr<T> (r) {}
42
43         template<class Y>
44         ComparableSharedPtr(ComparableSharedPtr<Y> const & r) : boost::shared_ptr<T> (r) {}
45
46         template<class Y>
47         ComparableSharedPtr(ComparableSharedPtr<Y> const & r, T * p) : boost::shared_ptr<T> (r, p) {}
48
49         template<class Y>
50         bool operator< (ComparableSharedPtr<Y> const & other) const { return **this < *other; }
51 };
52
53
54 } // namespace ARDOUR
55
56 #endif // __ardour_comparable_shared_ptr_h__