old-hiro/reference/action/separator.hpp

12 lines
213 B
C++
Raw Permalink Normal View History

2016-05-15 10:45:15 +00:00
namespace phoenix {
struct pSeparator : public pAction {
Separator& separator;
pSeparator(Separator& separator) : pAction(separator), separator(separator) {}
void constructor();
void destructor();
};
}