File: NullFragmentFilter.hpp

package info (click to toggle)
salmon 0.7.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,352 kB
  • ctags: 5,243
  • sloc: cpp: 42,341; ansic: 6,252; python: 228; makefile: 207; sh: 190
file content (10 lines) | stat: -rw-r--r-- 225 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef __NULL_FRAGMENT_FILTER_HPP__
#define __NULL_FRAGMENT_FILTER_HPP__

template <typename FragT>
class NullFragmentFilter {
    public:
    inline void processFrag(FragT* f) { }
};

#endif // __NULL_FRAGMENT_FILTER_HPP__