From 4b8bad3d711f39db84f094edf83c5496a3f02cd6 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 21 Nov 2006 12:23:13 +0000 Subject: Wow, craziness. Part way through working on the confpair system I got some sudden insperation and completely redid Hash. Now everything but delete is implemented, including typesafe iterators and more. It's really cool, and everyone should check it out and start using it right away! --- src/confpairbase.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/confpairbase.cpp (limited to 'src/confpairbase.cpp') diff --git a/src/confpairbase.cpp b/src/confpairbase.cpp new file mode 100644 index 0000000..1203dc0 --- /dev/null +++ b/src/confpairbase.cpp @@ -0,0 +1,17 @@ +#include "confpairbase.h" + +ConfPairBase::ConfPairBase() +{ +} + +ConfPairBase::~ConfPairBase() +{ +} + +ConfPairBase &ConfPairBase::operator=( const std::string &s ) +{ + setFromString( s ); + + return *this; +} + -- cgit v1.2.3