CBMC
armcc_mode.h
Go to the documentation of this file.
1 /*******************************************************************\
2 
3 Module: Base class for command line interpretation for CL
4 
5 Author: CM Wintersteiger
6 
7 Date: June 2006
8 
9 \*******************************************************************/
10 
13 
14 #ifndef CPROVER_GOTO_CC_ARMCC_MODE_H
15 #define CPROVER_GOTO_CC_ARMCC_MODE_H
16 
17 #include "armcc_cmdline.h"
18 #include "gcc_message_handler.h"
19 #include "goto_cc_mode.h"
20 
22 {
23 public:
24  int doit() final;
25  void help_mode() final;
26 
28  armcc_cmdlinet &_armcc_cmdline,
29  const std::string &_base_name):
30  goto_cc_modet(_armcc_cmdline, _base_name, message_handler),
31  cmdline(_armcc_cmdline)
32  {
33  }
34 
35 protected:
38 };
39 
40 #endif // CPROVER_GOTO_CC_ARMCC_MODE_H
A special command line object to mimic ARM's armcc.
armcc_modet(armcc_cmdlinet &_armcc_cmdline, const std::string &_base_name)
Definition: armcc_mode.h:27
gcc_message_handlert message_handler
Definition: armcc_mode.h:37
int doit() final
does it.
Definition: armcc_mode.cpp:30
armcc_cmdlinet & cmdline
Definition: armcc_mode.h:36
void help_mode() final
display command line help
Definition: armcc_mode.cpp:194
Command line interpretation for goto-cc.