Loading...
Searching...
No Matches
gamssetrecord.h
1
26#ifndef GAMSSETRECORD_H
27#define GAMSSETRECORD_H
28
29#include "gamssymbolrecord.h"
30
31namespace gams {
32
33class GAMSSet;
34
36class LIBSPEC GAMSSetRecord : public GAMSSymbolRecord
37{
38public:
42
46
50 GAMSSetRecord& operator =(const GAMSSetRecord& other);
51
54 std::string text();
55
58 void setText(const std::string& text);
59
60private:
61 friend class GAMSSymbolIter<GAMSSet>;
62 GAMSSetRecord(const GAMSSet &set, void* symIterPtr);
63};
64
65}
66#endif // GAMSSETRECORD_H
This is the representation of a single record of a GAMSSet.
Definition: gamssetrecord.h:37
void setText(const std::string &text)
GAMSSetRecord(const GAMSSymbolRecord &record)
std::string text()
Definition: gams.h:91