2016-06-29 22:52:32 +08:00
|
|
|
#ifndef TColStd_ListOfInteger_HeaderFile
|
|
|
|
#define TColStd_ListOfInteger_HeaderFile
|
|
|
|
|
|
|
|
#include "Standard_TypeDef.hxx"
|
|
|
|
|
|
|
|
class TColStd_ListOfInteger
|
|
|
|
{
|
|
|
|
public:
|
2016-06-30 16:39:45 +08:00
|
|
|
TColStd_ListOfInteger() {}
|
2016-06-29 22:52:32 +08:00
|
|
|
Standard_Boolean IsEmpty() const { return Standard_True; }
|
|
|
|
int First() const { return -1; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|