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

« back to all changes in this revision

Viewing changes to Puma/src/infos/CUnionInstance.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 __CUnionInstance_h__
20
20
#define __CUnionInstance_h__
21
21
 
22
 
// union template instance
 
22
/** \file 
 
23
 *  Semantic information about an instance of a union template. */
23
24
 
24
25
#include "Puma/CTemplateInstance.h"
25
26
#include "Puma/CUnionInfo.h"
27
28
namespace Puma {
28
29
 
29
30
 
 
31
/** \class CUnionInstance CUnionInstance.h Puma/CUnionInstance.h
 
32
 *  Semantic information about an instance of a union template. */
30
33
class CUnionInstance : public CUnionInfo {
31
34
  CTemplateInstance _InstanceInfo;
32
35
 
33
36
public: 
 
37
  /** Constructor. */
34
38
  CUnionInstance ();
 
39
  /** Destructor. If the object type is CObjectInfo::UNION_INSTANCE_INFO, 
 
40
   *  then CObjectInfo::CleanUp() is called. */
35
41
  ~CUnionInstance ();
36
42
 
 
43
  /** Get the semantic information about the template instance. */
37
44
  CTemplateInstance *TemplateInstance () const;
38
45
};
39
46