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

« back to all changes in this revision

Viewing changes to Puma/src/infos/CTypeClass.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 __CTypeClass_h__
20
20
#define __CTypeClass_h__
21
21
 
 
22
/** \file
 
23
 *  Type of a class. */
 
24
 
22
25
#ifndef __CTypeInfo_h__
23
26
#warning !!!      DO NOT INCLUDE THIS FILE      !!!  
24
27
#warning !!! INCLUDE FILE "CTypeInfo.h" INSTEAD !!!  
30
33
class CClassInfo;
31
34
class CRecord;
32
35
 
 
36
 
 
37
/** \class CTypeClass CTypeClass.h Puma/CTypeInfo.h
 
38
 *  Type of a class. 
 
39
 *  Examples: 
 
40
 *  \code 
 
41
 * class X x;    // x has type 'class X'
 
42
 * struct Y y;   // y has type 'class Y'
 
43
 *  \endcode */
33
44
class CTypeClass : public CTypeRecord {
34
45
public:
35
 
  CTypeClass (CRecord *);
 
46
  /** Constructor. Type has id CTypeInfo::TYPE_CLASS.
 
47
   *  \param c The semantic information about the class. */
 
48
  CTypeClass (CRecord *c);
 
49
  /** Destructor. */
36
50
  ~CTypeClass ();
37
51
 
 
52
  /** Get the semantic information about the class. */
38
53
  CClassInfo *ClassInfo () const;
39
54
};
40
55