Rudiments
linkedlistutil.h
1 // Copyright (c) 2003 David Muse
2 // See the COPYING file for more information.
3 
4 #ifndef RUDIMENTS_LINKEDLIST_UTIL_H
5 #define RUDIMENTS_LINKEDLIST_UTIL_H
6 
7 #include <rudiments/private/inttypes.h>
8 
9 #ifdef RUDIMENTS_NAMESPACE
10 namespace rudiments {
11 #endif
12 
13 template <class datatype>
15  public:
16  void print(datatype data) const;
17  int32_t compare(datatype data1, datatype data2) const;
18 };
19 
20 #ifdef RUDIMENTS_NAMESPACE
21 }
22 #endif
23 
24 #include <rudiments/private/linkedlistutilinlines.h>
25 
26 #endif