Files
Extern/vroni/Include/ext_appl_vroni_object.h
T
SaraP 7cb5ebab3f Extern :
- aggiornamento Vroni a 7.8.
2025-01-29 16:25:40 +01:00

64 lines
2.3 KiB
C++

/*****************************************************************************/
/* */
/* Copyright (C) 2002--2025 M. Held */
/* */
/* This code is not in the public domain. All rights reserved! Please make */
/* sure to read the full copyright statement contained in "README.txt" or in */
/* the "main" file of this code, such as "main.cc". */
/* */
/*****************************************************************************/
/* */
/* Written by: Martin Held */
/* */
/* E-Mail: held@cs.sbg.ac.at */
/* Fax Mail: (+43 662) 8044-611 */
/* Voice Mail: (+43 662) 8044-6304 */
/* Snail Mail: Martin Held */
/* FB Informatik */
/* Universitaet Salzburg */
/* A-5020 Salzburg, Austria */
/* */
/*****************************************************************************/
#ifndef VRONI_EXT_APPL_VRONI_OBJECT_H
#define VRONI_EXT_APPL_VRONI_OBJECT_H
#include "vroni_object.h"
/* */
/* VRONI object derived class declaration */
/* */
class extApplVroniObject : public vroniObject
{
public:
//
// CONSTRUCTOR / DESTRUCTOR
//
extApplVroniObject();
virtual ~extApplVroniObject();
//
// EXTRA FUNCTIONS
//
bool EdgeDataNeedInitializing();
void InitializeAllEdgeData();
bool IsDegenerateEdge(int ie);
protected:
private:
};
#endif