2016-04-06 17:29:40 +08:00
|
|
|
#ifndef TColStd_MapIteratorOfPackedMapOfInteger_HeaderFile
|
|
|
|
#define TColStd_MapIteratorOfPackedMapOfInteger_HeaderFile
|
|
|
|
|
2016-06-14 22:42:22 +08:00
|
|
|
#include <Standard_TypeDef.hxx>
|
2016-04-06 17:29:40 +08:00
|
|
|
class TColStd_PackedMapOfInteger;
|
|
|
|
|
|
|
|
class TColStd_MapIteratorOfPackedMapOfInteger
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TColStd_MapIteratorOfPackedMapOfInteger() {}
|
|
|
|
TColStd_MapIteratorOfPackedMapOfInteger(const TColStd_PackedMapOfInteger&) {}
|
|
|
|
void Initialize(const TColStd_PackedMapOfInteger&) {}
|
|
|
|
void Reset() {}
|
|
|
|
int Key() const { return 0; }
|
|
|
|
void Next() {}
|
2016-06-14 22:42:22 +08:00
|
|
|
Standard_Boolean More() const { return Standard_False; }
|
2016-04-06 17:29:40 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|