Gen7Data/Scripts/Interfaces/constString.astypedef
Deukhoofd 40dcd8a407
Some checks failed
continuous-integration/drone/push Build is failing
Switch to astypedef, adds unit tests
2021-10-23 14:20:18 +02:00

12 lines
344 B
Plaintext

valuetype constString {
behave 2 void f();
behave 0 void f();
behave 0 void f(const string&in s);
behave 0 void f(const constString&in);
constString& opAssign(const constString &in);
bool opEquals(const constString &in) const;
bool opEquals(const string &in) const;
uint opImplConv();
string opImplConv();
}