~ubuntu-branches/ubuntu/vivid/kdepim/vivid

« back to all changes in this revision

Viewing changes to libksieve/impl/lexer.h

  • Committer: Package Import Robot
  • Author(s): Scott Kitterman, Jonathan Riddell, Rohan Garg, Scott Kitterman
  • Date: 2012-11-21 13:12:36 UTC
  • mfrom: (0.2.33)
  • Revision ID: package-import@ubuntu.com-20121121131236-32ijw9a2txrar80k
Tags: 4:4.9.80-0ubuntu1
[ Jonathan Riddell ]
* New upstream beta release

[ Rohan Garg ]
* Add nepomuk-core-dev to build-deps

[ Scott Kitterman ]
* Add new package, libpimcommon4
  - Add libpimcommon4.install
  - Add to debian/control, including kdepim-dbg and kdepim-dev depends
  - Add to kdepim-dev.install
* Remove usr/bin/backupmail and related files from kmail.install as they are
  not provided by upstream anymore
* Add usr/bin/pimsettingexporter and related files to kmail.install
* Add libnepomukwidgets-dev to build-depends

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    your version.
33
33
*/
34
34
 
35
 
#ifndef __KSIEVE_IMPL_LEXER_H__
36
 
#define __KSIEVE_IMPL_LEXER_H__
 
35
#ifndef KSIEVE_IMPL_LEXER_H
 
36
#define KSIEVE_IMPL_LEXER_H
37
37
 
38
38
#include <ksieve/lexer.h>
39
39
#include <ksieve/error.h>
88
88
        parsing is successful, cursor is positioned behind the CRLF
89
89
        that ended the comment's line (or past the end). */
90
90
    bool parseHashComment( QString & result, bool reallySave=false );
91
 
    
 
91
 
92
92
    /** Cursor must be positioned after the opening slash-asterisk */
93
93
    bool parseBracketComment( QString & result, bool reallySave=false );
94
 
    
 
94
 
95
95
    /** Cursor must be positioned on the opening '/'or '#' */
96
96
    bool parseComment( QString & result, bool reallySave=false );
97
97
 
185
185
 
186
186
}
187
187
 
188
 
#endif // __KSIEVE_IMPL_LEXER_H__
 
188
#endif