Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 3e3d9eda9d
)
r14.0.x
parent
25071ecede
commit
4ae7b32dc0
@ -1,7 +1,7 @@
|
||||
#ifndef ADAAST_HPP
|
||||
#define ADAAST_HPP
|
||||
|
||||
#include <antlr/CommonAST.hpp>
|
||||
#include <antlr/CommonAST.h>
|
||||
|
||||
class AdaAST;
|
||||
typedef antlr::ASTRefCount<AdaAST> RefAdaAST;
|
@ -1,11 +1,9 @@
|
||||
%{CC_TEMPLATE}
|
||||
|
||||
// newer (non customized) versions of this file go to main_window.cc_new
|
||||
|
||||
// This file is for your program, I won't touch it again!
|
||||
|
||||
#include "config.h"
|
||||
#include "main_window.hh"
|
||||
#include "main_window.h"
|
||||
|
||||
#include <gtk--/main.h>
|
||||
|
@ -1,16 +1,14 @@
|
||||
%{HH_TEMPLATE}
|
||||
|
||||
// newer (non customized) versions of this file go to main_window.hh_new
|
||||
|
||||
// you might replace
|
||||
// class foo : public foo_glade { ... };
|
||||
// by
|
||||
// typedef foo_glade foo;
|
||||
// if you didn't make any modifications to the widget
|
||||
|
||||
#ifndef _MAIN_WINDOW_HH
|
||||
# include "main_window_glade.hh"
|
||||
# define _MAIN_WINDOW_HH
|
||||
#ifndef _MAIN_WINDOW_H
|
||||
# include "main_window_glade.h"
|
||||
# define _MAIN_WINDOW_H
|
||||
class main_window : public main_window_glade
|
||||
{
|
||||
protected:
|
@ -1,11 +1,9 @@
|
||||
%{CC_TEMPLATE}
|
||||
|
||||
// newer (non customized) versions of this file go to main_window.cc_new
|
||||
|
||||
// This file is for your program, I won't touch it again!
|
||||
|
||||
#include "config.h"
|
||||
#include "main_window.hh"
|
||||
#include "main_window.h"
|
||||
|
||||
bool main_window::quit(GdkEventAny *ev)
|
||||
{ return 0;
|
@ -1,16 +1,14 @@
|
||||
%{HH_TEMPLATE}
|
||||
|
||||
// newer (non customized) versions of this file go to main_window.hh_new
|
||||
|
||||
// you might replace
|
||||
// class foo : public foo_glade { ... };
|
||||
// by
|
||||
// typedef foo_glade foo;
|
||||
// if you didn't make any modifications to the widget
|
||||
|
||||
#ifndef _MAIN_WINDOW_HH
|
||||
# include "main_window_glade.hh"
|
||||
# define _MAIN_WINDOW_HH
|
||||
#ifndef _MAIN_WINDOW_H
|
||||
# include "main_window_glade.h"
|
||||
# define _MAIN_WINDOW_H
|
||||
class main_window : public main_window_glade
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
#ifndef JAVAAST_HPP
|
||||
#define JAVAAST_HPP
|
||||
|
||||
#include <antlr/CommonAST.hpp>
|
||||
#include <antlr/ASTFactory.hpp>
|
||||
#include <antlr/CommonAST.h>
|
||||
#include <antlr/ASTFactory.h>
|
||||
|
||||
class JavaAST;
|
||||
typedef ANTLR_USE_NAMESPACE(antlr)ASTRefCount<JavaAST> RefJavaAST;
|
@ -1,7 +1,7 @@
|
||||
#ifndef PASCALAST_HPP
|
||||
#define PASCALAST_HPP
|
||||
|
||||
#include <antlr/CommonAST.hpp>
|
||||
#include <antlr/CommonAST.h>
|
||||
|
||||
class PascalAST;
|
||||
typedef antlr::ASTRefCount<PascalAST> RefPascalAST;
|
@ -1,2 +1,2 @@
|
||||
|
||||
noinst_HEADERS = ANTLRException.hpp ANTLRUtil.hpp AST.hpp ASTArray.hpp ASTFactory.hpp ASTNULLType.hpp ASTPair.hpp ASTRefCount.hpp BaseAST.hpp BitSet.hpp CharBuffer.hpp CharInputBuffer.hpp CharScanner.hpp CharStreamException.hpp CharStreamIOException.hpp CircularQueue.hpp CommonAST.hpp CommonASTWithHiddenTokens.hpp CommonHiddenStreamToken.hpp CommonToken.hpp InputBuffer.hpp IOException.hpp LLkParser.hpp LexerSharedInputState.hpp MismatchedCharException.hpp MismatchedTokenException.hpp NoViableAltException.hpp NoViableAltForCharException.hpp Parser.hpp ParserSharedInputState.hpp RecognitionException.hpp RefCount.hpp SemanticException.hpp String.hpp Token.hpp TokenBuffer.hpp TokenStream.hpp TokenStreamBasicFilter.hpp TokenStreamException.hpp TokenStreamHiddenTokenFilter.hpp TokenStreamIOException.hpp TokenStreamRecognitionException.hpp TokenStreamRetryException.hpp TokenStreamSelector.hpp TreeParser.hpp TreeParserSharedInputState.hpp config.hpp
|
||||
noinst_HEADERS = ANTLRException.h ANTLRUtil.h AST.h ASTArray.h ASTFactory.h ASTNULLType.h ASTPair.h ASTRefCount.h BaseAST.h BitSet.h CharBuffer.h CharInputBuffer.h CharScanner.h CharStreamException.h CharStreamIOException.h CircularQueue.h CommonAST.h CommonASTWithHiddenTokens.h CommonHiddenStreamToken.h CommonToken.h InputBuffer.h IOException.h LLkParser.h LexerSharedInputState.h MismatchedCharException.h MismatchedTokenException.h NoViableAltException.h NoViableAltForCharException.h Parser.h ParserSharedInputState.h RecognitionException.h RefCount.h SemanticException.h String.h Token.h TokenBuffer.h TokenStream.h TokenStreamBasicFilter.h TokenStreamException.h TokenStreamHiddenTokenFilter.h TokenStreamIOException.h TokenStreamRecognitionException.h TokenStreamRetryException.h TokenStreamSelector.h TreeParser.h TreeParserSharedInputState.h config.h
|
||||
|
Loading…
Reference in new issue