VGM Version 5.3
Loading...
Searching...
No Matches
VMultiUnion.h
Go to the documentation of this file.
1// $Id$
2
3// -----------------------------------------------------------------------
4// The BaseVGM package of the Virtual Geometry Model
5// Copyright (C) 2007, Ivana Hrivnacova
6// All rights reserved.
7//
8// For the licensing terms see vgm/LICENSE.
9// Contact: ivana@ipno.in2p3.fr
10// -----------------------------------------------------------------------
11
13//
19
20#ifndef BASE_VGM_V_MULTI_UNION_H
21#define BASE_VGM_V_MULTI_UNION_H
22
24
25#include <iostream>
26
27namespace BaseVGM {
28
29class VMultiUnion : public virtual VGM::IMultiUnion
30{
31 public:
33 virtual ~VMultiUnion();
34
35 // methods
36 virtual VGM::SolidType Type() const;
37
38 // streaming
39 virtual std::ostream& Put(std::ostream& out) const;
40};
41
42} // namespace BaseVGM
43
44// inline functions
45
50
51#endif // BASE_VGM_V_MULTI_UNION_H
The ABC for Boolean solids.
Definition VMultiUnion.h:30
virtual std::ostream & Put(std::ostream &out) const
Put the printing of the solid parameters in the out stream.
virtual VGM::SolidType Type() const
Return the type of this solid.
Definition VMultiUnion.h:46
The VGM interface to Boolean solids.
Definition IMultiUnion.h:31
BaseVGM utilities.
Definition utilities.h:23
SolidType
Definition ISolid.h:29
@ kMultiUnion
Definition ISolid.h:50