~ubuntu-branches/ubuntu/quantal/kdevelop-php/quantal-proposed

« back to all changes in this revision

Viewing changes to phphighlighting.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-05-24 22:39:54 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100524223954-x3h9fqdwevuw7yra
Tags: 1.0.0-0ubuntu2
MaverickĀ upload

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    <one line to give the program's name and a brief idea of what it does.>
 
3
    Copyright (C) <year>  <name of author>
 
4
 
 
5
    This program is free software: you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation, either version 3 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    This program is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
*/
 
19
 
 
20
#ifndef PHP_PHPHIGHLIGHTING_H
 
21
#define PHP_PHPHIGHLIGHTING_H
 
22
 
 
23
#include <language/highlighting/codehighlighting.h>
 
24
 
 
25
 
 
26
namespace Php {
 
27
 
 
28
class Highlighting : public KDevelop::CodeHighlighting
 
29
{
 
30
public:
 
31
    Highlighting(QObject* parent);
 
32
    virtual KDevelop::CodeHighlightingInstance* createInstance() const;
 
33
};
 
34
 
 
35
}
 
36
 
 
37
#endif // PHP_PHPHIGHLIGHTING_H