ChartToJava.h
Go to the documentation of this file.
1 
20 #ifndef CHARTTOJAVA_H_FD78FFC1
21 #define CHARTTOJAVA_H_FD78FFC1
22 
23 #include "Transformer.h"
24 #include "ChartToC.h"
25 #include "uscxml/util/DOM.h"
26 
27 #include "promela/PromelaInlines.h"
29 
30 #include <ostream>
31 
32 namespace uscxml {
33 
34 class USCXML_API ChartToJava : public ChartToC {
35 public:
36  virtual ~ChartToJava();
37  static Transformer transform(const Interpreter& other);
38 
39  void writeTo(std::ostream& stream);
40 
41 protected:
42  ChartToJava(const Interpreter& other);
43 
44 };
45 
46 }
47 
48 
49 #endif /* end of include guard: CHARTTOJAVA_H_FD78FFC1 */
Definition: Breakpoint.cpp:26
Central class to interpret and process SCXML documents.
Definition: Interpreter.h:79
Definition: ChartToJava.h:34
Definition: ChartToC.h:33
Definition: Transformer.h:67