csftable.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright 2001-2006 Adrian Thurston <thurston@complang.org>
  3. * 2004 Erich Ocean <eric.ocean@ampede.com>
  4. * 2005 Alan West <alan@alanz.com>
  5. */
  6. /* This file is part of Ragel.
  7. *
  8. * Ragel is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * Ragel is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with Ragel; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #ifndef _CSFTABLE_H
  23. #define _CSFTABLE_H
  24. #include <iostream>
  25. #include "cstable.h"
  26. /* Forwards. */
  27. struct CodeGenData;
  28. /*
  29. * CSharpFTabCodeGen
  30. */
  31. class CSharpFTabCodeGen : public CSharpTabCodeGen
  32. {
  33. public:
  34. CSharpFTabCodeGen( ostream &out ) : CSharpFsmCodeGen(out), CSharpTabCodeGen(out) {}
  35. private:
  36. std::ostream &TO_STATE_ACTION_SWITCH();
  37. std::ostream &FROM_STATE_ACTION_SWITCH();
  38. std::ostream &EOF_ACTION_SWITCH();
  39. std::ostream &ACTION_SWITCH();
  40. virtual std::ostream &TO_STATE_ACTION( RedStateAp *state );
  41. virtual std::ostream &FROM_STATE_ACTION( RedStateAp *state );
  42. virtual std::ostream &EOF_ACTION( RedStateAp *state );
  43. virtual std::ostream &TRANS_ACTION( RedTransAp *trans );
  44. virtual void writeData();
  45. virtual void writeExec();
  46. virtual void calcIndexSize();
  47. };
  48. #endif