~ubuntu-branches/ubuntu/jaunty/aspectc++/jaunty

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/inc/Puma/CCommentTokens.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-07-07 14:41:02 UTC
  • mfrom: (1.1.3 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080707144102-lzml7t07f3sl00r5
Tags: 1.0pre4~svn.20080711-1
* new upstream snapshot.
* include all upstream documentation. Clarifying emails regarding
  licensing has been included into debian/copyright.
* reformat description following recomendations of
  http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description
  (Closes: #480316)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#ifndef __C_COMMENT_TOKENS_H__
20
20
#define __C_COMMENT_TOKENS_H__
21
21
 
 
22
/** \file
 
23
 *  White space and comment token types. */
 
24
 
22
25
namespace Puma {
23
26
 
24
27
 
 
28
/** White space and comment token types. These types
 
29
 *  can be compared to Puma::Token::type(). */
25
30
enum {
 
31
  /** Any white space block. */
26
32
  TOK_WSPACE = 400,
 
33
  /** C++ style single line comment. */
27
34
  TOK_CCSINGLE = 350,
 
35
  /** C style multi-line comment start token. */
28
36
  TOK_CCMULTIBEGIN,
 
37
  /** C style multi-line comment end token. */
29
38
  TOK_CCMULTIEND,
 
39
  /** Comment block. */
30
40
  TOK_CCOMMENT
31
41
};
32
42