~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/cpphighlighting.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * KDevelop C++ Highlighting Support
 
3
 *
 
4
 * Copyright 2007-2008 David Nolden <david.nolden.kdevelop@art-master.de>
 
5
 * Copyright 2006 Hamish Rodda <rodda@kde.org>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU Library General Public License as
 
9
 * published by the Free Software Foundation; either version 2 of the
 
10
 * License, or (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public
 
18
 * License along with this program; if not, write to the
 
19
 * Free Software Foundation, Inc.,
 
20
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
21
 */
 
22
 
 
23
#ifndef KDEVCPPHIGHLIGHTING_H
 
24
#define KDEVCPPHIGHLIGHTING_H
 
25
 
 
26
#include <language/highlighting/codehighlighting.h>
 
27
 
 
28
 
 
29
class CppHighlighting : public KDevelop::CodeHighlighting
 
30
{
 
31
  Q_OBJECT
 
32
public:
 
33
  CppHighlighting(QObject* parent);
 
34
 
 
35
};
 
36
 
 
37
#endif