~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to Subversion2/svninfohandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-02-10 10:13:06 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210101306-nzt1b7es8mby1eyi
Tags: 2.2.0.3681+dfsg-0ubuntu1
* New upstream release.
* Refresh patches.
* Adjust Makefile to avoid the execution of uninstall target. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef SVNINFOHANDLER_H
2
 
#define SVNINFOHANDLER_H
3
 
 
4
 
#include "svncommandhandler.h" // Base class
5
 
class SubversionView;
6
 
 
7
 
class SvnInfoHandler : public SvnCommandHandler {
8
 
        int             m_reason;
9
 
public:
10
 
        SvnInfoHandler(Subversion2 *plugin, int reason, int commandId, wxEvtHandler *owner);
11
 
        virtual ~SvnInfoHandler();
12
 
 
13
 
public:
14
 
        virtual void Process(const wxString &output);
15
 
};
16
 
 
17
 
#endif // SVNINFOHANDLER_H