m8

A general-purpose preprocessor for metaprogramming.


m8

/

src

/

m8

/

macros_custom.hh

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef M8_MACROS_CUSTOM_HH
#define M8_MACROS_CUSTOM_HH

#include "m8.hh"

#include <string>

namespace Macros
{
  // functions
  void macros_custom(M8& m8);

} // namespace Macros

#endif // M8_MACROS_CUSTOM_HH
Back to Top