I've recently linked log4cpp in my project and I tried making a class as such:
class ConsoleAppenderSkeleton : public log4cpp::AppenderSkeleton
{
private:
Console& console;
public:
ConsoleAppenderSkeleton(Console& console) : console(console)
{
// Error! no default constructor exists for log4cpp::AppenderSkeleton
}
}
What I tried
- Adding another constructor:
ConsoleAppenderSkeleton(void);
- Removing the initializer list
Any idea what could be causing this? I'm aware I need to implement the inherited functions such as close() however those shouldn't be causing this error, and in C++ you aren't forced to override, it will just behave in a weird manner if you don't
You aren't calling the base class' constructor explicitly and it doesn't have an empty constructor. Its constructor requires an std::string parameter. You should notice this when you override a class.