File indexing completed on 2024-04-14 14:47:49

0001 /*
0002     SPDX-FileCopyrightText: 2008 Niko Sams <niko.sams@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PHPTOKENSTREAM_H
0008 #define PHPTOKENSTREAM_H
0009 
0010 #include <kdev-pg-token-stream.h>
0011 
0012 namespace Php
0013 {
0014 
0015 class Token : public KDevPG::Token
0016 {
0017 public:
0018     qint64 docCommentBegin;
0019     qint64 docCommentEnd;
0020 };
0021 
0022 class TokenStream : public KDevPG::TokenStreamBase<Token>
0023 {
0024 };
0025 
0026 }
0027 #endif