File: TraceInfos.hpp

package info (click to toggle)
vite 1.2%2Bsvn%2Bgit4.c6c0ce7-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,544 kB
  • sloc: cpp: 32,343; makefile: 461; sh: 144; ansic: 67
file content (40 lines) | stat: -rw-r--r-- 851 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef TRACE_INFOS_HPP
#define TRACE_INFOS_HPP

class Trace_infos : public Plugin {
private:
    QTextEdit *_text_info;

    void set_container_infos(QString &text) const;

    void set_states_infos(QString &text) const;
    void get_states_name_rec(Node<StateChange> *parent, std::set<std::string> &state_list) const;
    void set_events_infos(QString &text) const;

    void set_variables_infos(QString &text) const;

    void set_links_infos(QString &text) const;

public:
    Trace_infos();
    ~Trace_infos();

    void init();
    void clear();

    void set_arguments(std::map<std::string /*argname*/, QVariant */*argValue*/>);
    std::string get_name();

public slots:
    void execute();

};

extern "C" 
#ifdef WIN32
    __declspec(dllexport) // no comment
#endif
Plugin *create() { return new Trace_infos(); }


#endif // TRACE_INFOS_HPP