File: qaperllanguage.hpp

package info (click to toggle)
regexplorer 0.1.6-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 312 kB
  • ctags: 302
  • sloc: cpp: 3,550; makefile: 46; sh: 14
file content (34 lines) | stat: -rw-r--r-- 598 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 
// $Id$
//
// Definition of QaPerlLanguage class
//
// Jan Borsodi <jb@ez.no>
// Created on: <05-Sep-2000 18:18:14 amos>
//
// Copyright (C) Jan Borsodi.  All rights reserved.

#ifndef QAPERLLANGUAGE_HPP
#define QAPERLLANGUAGE_HPP

#include <qstring.h>

#include "qaregexplanguage.hpp"

/*! \file qaperllanguage.hpp
  Definition of QaPerlLanguage class
*/

class QaPerlLanguage : public QaRegExpLanguage
{
public:
    QaPerlLanguage();
    virtual ~QaPerlLanguage();

    virtual QString fromPlainText( const QString &s, bool code, MatchType type );

private:
};


#endif // QAPERLLANGUAGE_HPP