committed latest 1.3 snapshot

This commit is contained in:
Guenter Obiltschnig
2007-04-18 16:22:57 +00:00
parent a8332eaaf3
commit b7a945da93
94 changed files with 6724 additions and 329 deletions

View File

@@ -1,7 +1,7 @@
//
// Any.h
//
// $Id: //poco/Main/Foundation/include/Poco/Any.h#2 $
// $Id: //poco/Main/Foundation/include/Poco/Any.h#3 $
//
// Library: Foundation
// Package: Core
@@ -60,7 +60,7 @@ public:
{
}
template<typename ValueType>
template <typename ValueType>
Any(const ValueType& value):
_content(new Holder<ValueType>(value))
/// Creates an any which stores the init parameter inside.