回滚代码
This commit is contained in:
parent
eb2c514e72
commit
91adaaaab6
|
|
@ -76,8 +76,8 @@ inline void AMFValue::init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
AMFValue::AMFValue() :
|
AMFValue::AMFValue(AMFType type) :
|
||||||
_type(AMF_NULL) {
|
_type(type) {
|
||||||
init();
|
init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ public:
|
||||||
typedef std::map<std::string, AMFValue> mapType;
|
typedef std::map<std::string, AMFValue> mapType;
|
||||||
typedef std::vector<AMFValue> arrayType;
|
typedef std::vector<AMFValue> arrayType;
|
||||||
|
|
||||||
AMFValue();
|
AMFValue(AMFType type = AMF_NULL);
|
||||||
AMFValue(const char *s);
|
AMFValue(const char *s);
|
||||||
AMFValue(const std::string &s);
|
AMFValue(const std::string &s);
|
||||||
AMFValue(double n);
|
AMFValue(double n);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue