summaryrefslogtreecommitdiff
path: root/zend/ini.cpp
diff options
context:
space:
mode:
authorvalmat <ufabiz@gmail.com>2014-04-14 00:36:01 +0600
committervalmat <ufabiz@gmail.com>2014-04-14 00:36:01 +0600
commit06ca40ff782231f58d629b09004700714d96fa0c (patch)
tree4145bb0adaa205a01eb34b50c8ff690729c5d02b /zend/ini.cpp
parente6660c521ea5d03e0caffa2a1f69e6e28982ab8b (diff)
Separated class IniValue from class Ini
Also replaced Ini::get() on ini_get() see https://github.com/CopernicaMarketingSoftware/PHP-CPP/issues/64#issuecomment-40313791
Diffstat (limited to 'zend/ini.cpp')
-rw-r--r--zend/ini.cpp39
1 files changed, 0 insertions, 39 deletions
diff --git a/zend/ini.cpp b/zend/ini.cpp
index 8a6fe11..889e388 100644
--- a/zend/ini.cpp
+++ b/zend/ini.cpp
@@ -50,45 +50,6 @@ void Ini::fill(zend_ini_entry *ini_entry, int module_number)
/**
- * Cast to a number
- * @return uint64_t
- */
-int64_t IniValue::numericValue() const
-{
- return zend_ini_long(const_cast<char*>(_name.c_str()), _name.size()+1, _isorig);
-
-}
-
-/**
- * Get access to the raw buffer for read operationrs.
- * @return const char *
- */
-const char* IniValue::rawValue() const
-{
- return zend_ini_string(const_cast<char*>(_name.c_str()), _name.size()+1, _isorig);
-}
-
-/**
- * Cast to a floating point
- * @return double
- */
-IniValue::operator double() const
-{
- return zend_ini_double(const_cast<char*>(_name.c_str()), _name.size()+1, _isorig);
-}
-
-/**
- * Custom output stream operator
- * @param stream
- * @param ini_val
- * @return ostream
- */
-std::ostream &operator<<(std::ostream &stream, const IniValue &ini_val)
-{
- return stream << static_cast<const char*>(ini_val);
-}
-
-/**
* End of namespace
*/
}