-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathSTEPundefined.h
More file actions
52 lines (43 loc) · 1.27 KB
/
STEPundefined.h
File metadata and controls
52 lines (43 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef STEPUNDEFINED_H
#define STEPUNDEFINED_H
/*
* NIST STEP Core Class Library
* clstepcore/STEPundefined.h
* April 1997
* KC Morris
* David Sauder
* Development of this software was funded by the United States Government,
* and is not subject to copyright.
*/
#include <sc_export.h>
#include <errordesc.h>
#include <string>
#include <read_func.h>
class SC_CORE_EXPORT SCLundefined {
protected:
#ifdef _MSC_VER
#pragma warning( push )
#pragma warning( disable: 4251 )
#endif
std::string val;
#ifdef _MSC_VER
#pragma warning( pop )
#endif
public:
// INPUT
virtual Severity StrToVal( const char * s, ErrorDescriptor * err );
virtual Severity StrToVal( istream & in, ErrorDescriptor * err );
virtual Severity STEPread( const char * s, ErrorDescriptor * err );
virtual Severity STEPread( istream & in, ErrorDescriptor * err );
// OUTPUT
virtual const char * asStr( std::string & s ) const;
virtual const char * STEPwrite( std::string & s );
virtual void STEPwrite( ostream & out = cout );
int set_null();
bool is_null();
SCLundefined & operator= ( const SCLundefined & );
SCLundefined & operator= ( const char * str );
SCLundefined();
virtual ~SCLundefined();
};
#endif