summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2015-07-28added "keeprefcount" parameter to Value::detach()Emiel Bruijntjes
2015-07-28removed value::attach() methods, because they were not in use, and were ↵Aart Stuurman
probably broken too
2015-07-23It now is possible to assign Php::Value["whatever"] results directly to new ↵Emiel Bruijntjes
Php::Value objects
2015-06-24removed tabs from fileEmiel Bruijntjes
2015-06-23Refactored Argument::~Argument() to use C++ default keyword instead ofRico Antonio Felix
an empty body to clarify intent
2015-06-23Adjusted the file description headerRico Antonio Felix
2015-06-23Updated file description headerRico Antonio Felix
2015-06-23Tightened up fileRico Antonio Felix
2015-06-23Refactored Constant::implementation() constRico Antonio Felix
2015-06-23Enhanced API documentation for Constant::implementation() constRico Antonio Felix
2015-06-23Corrected API documentation for std::shared_ptr<ConstantImpl>Rico Antonio Felix
Constant::_impl
2015-06-23Corrected API documentation for Constant::addTo(ClassBase&) constRico Antonio Felix
2015-06-23Refactored Constant::~Constant() to use C++ default keyword instead ofRico Antonio Felix
an empty body to clarify intent
2015-06-23Enhanced documentation for Constant(const char*, std::nullptr_t)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, const std::string&)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, const char*, size_t)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, const char*)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, double)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, int64_t)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, int32_t)Rico Antonio Felix
2015-06-23Added API documentation for Constant(const char*, bool)Rico Antonio Felix
2015-06-23Enhanced documentationRico Antonio Felix
2015-06-21Refactored operator%=(X&, Php::Value) to use C++ style cast to clarifyRico Antonio Felix
intent
2015-06-21Refactored operator/=(X&, Php::Value) to use C++ style cast to clarifyRico Antonio Felix
intent
2015-06-21Refactored operator*=(X&, Php::Value) to use C++ style cast to clarifyRico Antonio Felix
intent
2015-06-21Refactored operator-=(X&, Php::Value) to use C++ style cast to clarifyRico Antonio Felix
intent
2015-06-21Refactored operator+=(X&, Php::Value) to use C++ style cast to clarifyRico Antonio Felix
intent
2015-06-21Corrected API DocumentationRico Antonio Felix
2015-06-20Refactored IniValue::boolValue to use C++ style cast to clarify intentRico Antonio Felix
2015-06-20Enhanced API DocumentationRico Antonio Felix
2015-06-20Refactored cast to int32_t to use C++ style cast to clarify intent Rico Antonio Felix
2015-06-20Enhanced API DocumentationRico Antonio Felix
2015-06-20Refactored cast to int16_t to use C++ style cast to clarify intentRico Antonio Felix
2015-06-20Corrected API documentationRico Antonio Felix
2015-06-15added extra check for abstract keyword when adding abstract methods for ↵Emiel Bruijntjes
interfaces
2015-06-04Allow interfaces define static methodsDreamsxin
2015-05-31fix documentation stuff that was reported in pull requested #194Emiel Bruijntjes
2015-05-18We are now ABI compatible with the latest release againToon Schoenmakers
2015-05-18The Value::get(int) method now works on objects that implemented ArrayAccess ↵Toon Schoenmakers
as well
2015-05-07rawValue no longer tries to return a valid pointer when the Value object ↵Martijn Otto
does not represent a string value
2015-04-13Php::GLOBALS was not exported (fixes issue #186)Emiel Bruijntjes
2015-04-13added PHPCPP_EXPORT, this may fix visibility issue #186Emiel Bruijntjes
2015-04-12Php::dl() function now gets an extra "persistent" parameter to load ↵Emiel Bruijntjes
extensions persistently
2015-03-30add PHPCPP_EXPORT macros to a number of << operators to prevent undefined ↵Emiel Bruijntjes
symbol errors, Value::contains() now also works with __isset()
2015-03-26Changed default visibility for symbols in the PHP-CPP library to hidden and ↵Martijn Otto
explicitly exported all symbols available from the public API. Moved the hiddenpointer to the zend implementation directory as it is not meant to be used publicly and not referenced anywhere from the API anyway
2015-03-26Fixed the Value::contains method and added the isCallable(name) function to ↵Martijn Otto
see if the object has an accessible member function
2015-03-25Added access checks to Php::Value::containsMartijn Otto
2015-03-13Implemented a simple sapi_name() method which will return the current sapiToon Schoenmakers
2015-03-12added methods IniValue::stringValue(), IniValue::numericValue(), etcv1.3.1Emiel Bruijntjes
2015-03-06Fixed ambiguous call (MSVC compiler)Roland Eischer
- Re-factored operator[] access to the get() function.