43#ifndef PROPERTYHANDLES_HH_
44#define PROPERTYHANDLES_HH_
46#include "OpenVolumeMeshHandle.hh"
48namespace OpenVolumeMesh {
51class VertexPropHandle :
public OpenVolumeMeshHandle {
public: VertexPropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
52class EdgePropHandle :
public OpenVolumeMeshHandle {
public: EdgePropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
53class HalfEdgePropHandle :
public OpenVolumeMeshHandle {
public: HalfEdgePropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
54class FacePropHandle :
public OpenVolumeMeshHandle {
public: FacePropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
55class HalfFacePropHandle :
public OpenVolumeMeshHandle {
public: HalfFacePropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
56class CellPropHandle :
public OpenVolumeMeshHandle {
public: CellPropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };
57class MeshPropHandle :
public OpenVolumeMeshHandle {
public: MeshPropHandle(
int _idx = -1) : OpenVolumeMeshHandle(_idx) {} };