2020-09-24: These classes were originally developed around 2004 and intended to be a lightweight C / C++ library to read ini-like config files. I seem to remember that at that time, I was able to use them with Microsoft's compiler (cl). I have never used them productively, though. Recently, I received two mails that told me that these classes cannot be compiled. They are right: when trying to compile them with GNU compiler, I get some errors like error: ambiguous overload for 'operator=' (operand types are 'std::__cxx11::string {aka std::__cxx11::basic_string<char>}' and 'const Chameleon') etc.
I have decided to nevertheless create a github repository for these classes. Maybe, someone still finds the idea useful or can improve the code so that it meets its original expectation.
Unfortunately, I am unable to find one of the emails that were sent to me regarding this config file reader. In case you should read this, please forgive me, I would have liked to answer you.
This code was originally hosted on my «other» website adp-gmbh.ch. On the original site, I had the following thank you notes for people than helped me improve the code at that time:
A chamaeleon is a strange animal. Once it looks green, then it looks blue. Very strange indeed! Very much so with this class. It might look like a string, then again, it might look like a double.
/*
Chameleon.h
Copyright (C) 2002-2004 René Nyffenegger
This source code is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this source code must not be misrepresented; you must not
claim that you wrote the original source code. If you use this source code
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original source code.
3. This notice may not be removed or altered from any source distribution.
René Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
#ifndef CHAMELEON_H__
#define CHAMELEON_H__
#include <string>
class Chameleon {
public:
Chameleon() {};
explicit Chameleon(const std::string&);
explicit Chameleon(double);
explicit Chameleon(const char*);
Chameleon(const Chameleon&);
Chameleon& operator=(Chameleon const&);
Chameleon& operator=(double);
Chameleon& operator=(std::string const&);
public:
operator std::string() const;
operator double () const;
private:
std::string value_;
};
#endif
/*
Chameleon.cpp
Copyright (C) 2002-2004 René Nyffenegger
This source code is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this source code must not be misrepresented; you must not
claim that you wrote the original source code. If you use this source code
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original source code.
3. This notice may not be removed or altered from any source distribution.
René Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
#include <string>
#include <sstream>
#include "Chameleon.h"
Chameleon::Chameleon(std::string const& value) {
value_=value;
}
#include <iostream>
Chameleon::Chameleon(const char* c) {
value_=c;
}
Chameleon::Chameleon(double d) {
std::stringstream s;
s<<d;
value_=s.str();
}
Chameleon::Chameleon(Chameleon const& other) {
value_=other.value_;
}
Chameleon& Chameleon::operator=(Chameleon const& other) {
value_=other.value_;
return *this;
}
Chameleon& Chameleon::operator=(double i) {
std::stringstream s;
s << i;
value_ = s.str();
return *this;
}
Chameleon& Chameleon::operator=(std::string const& s) {
value_=s;
return *this;
}
Chameleon::operator std::string() const {
return value_;
}
Chameleon::operator double() const {
return atof(value_.c_str());
}