~ubuntu-branches/ubuntu/utopic/openmsx-debugger/utopic

« back to all changes in this revision

Viewing changes to src/OpenMSXConnection.h

  • Committer: Bazaar Package Importer
  • Author(s): Joost Yervante Damad
  • Date: 2009-12-06 07:40:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091206074002-kssfkg1d6xbp6w9e
Tags: 0.0.0.svn20091206-1
New svn snapshot (Closes: #559612)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
class ReadDebugBlockCommand : public SimpleCommand
37
37
{
38
38
public:
 
39
        ReadDebugBlockCommand(const QString& commandString, unsigned size,
 
40
                              unsigned char* target);
39
41
        ReadDebugBlockCommand(const QString& debuggable, unsigned offset, unsigned size,
40
42
                              unsigned char* target);
41
43
protected:
45
47
        unsigned char* target;
46
48
};
47
49
 
 
50
class WriteDebugBlockCommand : public SimpleCommand
 
51
{
 
52
public:
 
53
        WriteDebugBlockCommand(const QString& debuggable, unsigned offset, unsigned size,
 
54
                              unsigned char* source);
 
55
};
 
56
 
48
57
class OpenMSXConnection : public QObject, private QXmlDefaultHandler
49
58
{
50
59
        Q_OBJECT