~ubuntu-branches/ubuntu/oneiric/codelite/oneiric

« back to all changes in this revision

Viewing changes to Subversion/revertpostcmdaction.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-05-27 04:16:42 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090527041642-0yz67hytd4qnpzka
Tags: 1.0.2841+dfsg-0ubuntu1
* New upstream release (LP: #380732)
* debian/*.lintian-overrides:
  + Drop them, they're pointless anyway
* debian/control,
  debian/rules,
  debian/README.source:
  + Use DH 7.0.50, with override rules instead of CDBS
  + Bump quilt version to 0.46-7 for DH integration
  + Tidy up get-orig-source rule
* debian/patches/01_symlink.patch:
  + Dropped, applied upstream
* debian/patches/03_cstdio-include.patch:
  + Dropped, fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __revertpostcmdaction__
 
2
#define __revertpostcmdaction__
 
3
 
 
4
#include "svnpostcmdaction.h"
 
5
 
 
6
class IManager;
 
7
 
 
8
class RevertPostCmdAction : public SvnPostCmdAction {
 
9
        IManager *m_mgr;
 
10
public:
 
11
        RevertPostCmdAction(IManager *mgr);
 
12
        virtual ~RevertPostCmdAction();
 
13
 
 
14
public:
 
15
        virtual void DoCommand();
 
16
};
 
17
#endif // __revertpostcmdaction__