Skip to content

Commit

Permalink
by convention name SimpleRealPreprocessor just RealPreprocessor etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Oct 28, 2011
1 parent c69feac commit b11825e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/interfaces/modular/Preprocessor.i
Expand Up @@ -34,22 +34,22 @@
namespace shogun
{
#ifdef USE_FLOAT64
%template(SimpleRealPreprocessor) CSimplePreprocessor<float64_t>;
%template(RealPreprocessor) CSimplePreprocessor<float64_t>;
#endif
#ifdef USE_UINT64
%template(SimpleUlongPreprocessor) CSimplePreprocessor<uint64_t>;
%template(UlongPreprocessor) CSimplePreprocessor<uint64_t>;
#endif
#ifdef USE_UINT16
%template(SimpleWordPreprocessor) CSimplePreprocessor<uint16_t>;
%template(WordPreprocessor) CSimplePreprocessor<uint16_t>;
#endif
#ifdef USE_INT16
%template(SimpleShortPreprocessor) CSimplePreprocessor<int16_t>;
%template(ShortPreprocessor) CSimplePreprocessor<int16_t>;
#endif
#ifdef USE_UINT8
%template(SimpleBytePreprocessor) CSimplePreprocessor<uint8_t>;
%template(BytePreprocessor) CSimplePreprocessor<uint8_t>;
#endif
#ifdef USE_CHAR
%template(SimpleCharPreprocessor) CSimplePreprocessor<char>;
%template(CharPreprocessor) CSimplePreprocessor<char>;
#endif
}

Expand Down

0 comments on commit b11825e

Please sign in to comment.