~ubuntu-branches/debian/stretch/codelite/stretch

« back to all changes in this revision

Viewing changes to CodeFormatter/clClangFormatLocator.h

  • Committer: Package Import Robot
  • Author(s): James Cowgill
  • Date: 2014-09-01 00:23:18 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20140901002318-wx98wxrjb2e0ifi8
Tags: 6.1.1+dfsg-1
* New upstream release.

* debian/control
  - Build depend on libhunspell-dev.
  - Re-enable SFTP support using libssh-gcrypt.
  - Recommend valgrind (for new MemChecker plugin).
* debian/copyright
  - Remove bundled version of hunspell.
* debian/patches
  - Refresh patches.
  - Patch 10_move-helper-binaries.patch rewritten due to upstream changes.
  - Add 19_remove-bundled-clang-format.patch to fix clang-format paths.
  - Add 20_Compilation-fix-for-non-precompiled-header-builds.patch from
    upstream to fix build.
* debian/*.1
  - Remove manpages in debian/ - moved to upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef CLCLANGFORMATLOCATOR_H
 
2
#define CLCLANGFORMATLOCATOR_H
 
3
 
 
4
#include <wx/string.h>
 
5
 
 
6
class clClangFormatLocator
 
7
{
 
8
public:
 
9
    clClangFormatLocator();
 
10
    virtual ~clClangFormatLocator();
 
11
 
 
12
    /**
 
13
     * @brief locate clang-format executable
 
14
     * @return
 
15
     */
 
16
    bool Locate(wxString &clangFormat);
 
17
};
 
18
 
 
19
#endif // CLCLANGFORMATLOCATOR_H