File: null_mixin.hpp

package info (click to toggle)
salmon 1.10.2%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 35,580 kB
  • sloc: cpp: 199,285; ansic: 171,082; sh: 859; python: 792; makefile: 235
file content (26 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (8)
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
/*
This code is written by kerukuro and released into public domain.
*/

#ifndef DIGESTPP_MIXINS_NULL_HPP
#define DIGESTPP_MIXINS_NULL_HPP

namespace digestpp
{
namespace mixin
{

/**
 * \brief Empty mixin that does not have any additional fuctions.
 * \sa hasher
 */
template<typename T>
struct null_mixin
{
};

} // namespace mixin
} // namespace digestpp

#endif // DIGESTPP_MIXINS_NULL_HPP