source: src/Parser/FormatParserTrait_specializations_header.hpp@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was 765f16, checked in by Frederik Heber <heber@…>, 13 years ago

Huge Refactoring of FormatParserStorage and all FormatParser's.

FormatParser:

FormatParserStorage:

  • We construct all lookup tables and alikes via boost preprocessor magic from a list of all available parser (enums).
  • we use the templated getParser() and addParser() functions to serve parsers to the outside. Instances are as usual created only once.

Tests:

  • tests only had to be changed because of the "renaming" of the Parsers.
  • Property mode set to 100644
File size: 883 bytes
Line 
1/*
2 * FormatParserTrait_specializations_header.hpp
3 *
4 * Created on: Sep 27, 2011
5 * Author: heber
6 */
7
8#ifndef FORMATPARSERTRAIT_SPECIALIZATIONS_HEADER_HPP_
9#define FORMATPARSERTRAIT_SPECIALIZATIONS_HEADER_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16// some preprocessor magic to forward declare all ParserTypes
17#include <boost/preprocessor/iteration/local.hpp>
18#include "ParserTypes.def"
19
20#define template_print(z,n,seq) \
21 template <> struct FormatParserTrait< \
22 BOOST_PP_SEQ_ELEM(n,seq) \
23 >;
24
25#if defined ParserTypes_END // do we have parameters at all?
26#define BOOST_PP_LOCAL_MACRO(n) template_print(~, n, PARSERSEQUENCE)
27#define BOOST_PP_LOCAL_LIMITS (0, ParserTypes_END-1)
28#include BOOST_PP_LOCAL_ITERATE()
29#endif
30
31#undef template_print
32
33#include "ParserTypes.undef"
34
35
36#endif /* FORMATPARSERTRAIT_SPECIALIZATIONS_HEADER_HPP_ */
Note: See TracBrowser for help on using the repository browser.