CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Shapeless.h
Go to the documentation of this file.
1 #ifndef DDI_Shapeless_h
2 #define DDI_Shapeless_h
3 
4 #include <iostream>
6 
7 namespace DDI {
8 
9  class Shapeless : public Solid
10  {
11  public:
13  double volume() const { return 0; }
14  void stream(std::ostream & os) const
15  { os << " shapeless"; }
16  };
17 }
18 #endif
double volume() const
Definition: Shapeless.h:13
void stream(std::ostream &os) const
Definition: Shapeless.h:14