~ubuntu-branches/ubuntu/intrepid/kdesdk/intrepid-updates

« back to all changes in this revision

Viewing changes to poxml/antlr/antlr/NoViableAltException.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-28 10:11:43 UTC
  • mto: This revision was merged to the branch mainline in revision 37.
  • Revision ID: james.westby@ubuntu.com-20080528101143-gzc3styjz1b70zxu
Tags: upstream-4.0.80
ImportĀ upstreamĀ versionĀ 4.0.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 * @author <br><a href="mailto:pete@yamuna.demon.co.uk">Pete Wells</a>
34
34
 */
35
35
 
 
36
#include "antlr/antlr_export.h"
36
37
#include "antlr/config.hpp"
37
38
#include "antlr/RecognitionException.hpp"
38
39
#include "antlr/Token.hpp"
40
41
 
41
42
ANTLR_BEGIN_NAMESPACE(antlr)
42
43
 
43
 
class NoViableAltException : public RecognitionException {
 
44
class ANTLR_EXPORT NoViableAltException : public RecognitionException {
44
45
public:
45
46
        const RefToken token;
46
47
        const RefAST node; // handles parsing and treeparsing
47
 
        
 
48
 
48
49
        NoViableAltException(RefAST t);
49
50
 
50
51
        NoViableAltException(RefToken t,const ANTLR_USE_NAMESPACE(std)string& fileName_);