You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
302 B
16 lines
302 B
/*
|
|
*/
|
|
#ifndef ADA_UTILS_H
|
|
#define ADA_UTILS_H
|
|
|
|
#include <tqstring.h>
|
|
#include "AdaAST.h"
|
|
|
|
TQString qtext (const RefAdaAST& n);
|
|
TQStringList qnamelist (const RefAdaAST& n);
|
|
TQString ada_spec_filename (const TQString& comp_unit_name);
|
|
TQString fq_specfilename (const TQString& comp_unit_name);
|
|
|
|
#endif
|
|
|