// Copyright (c) 1994 James Clark // See the file COPYING for copying permission. #ifndef StringResource_INCLUDED #define StringResource_INCLUDED 1 #include "StringOf.h" #include "Resource.h" #ifdef SP_NAMESPACE namespace SP_NAMESPACE { #endif template class StringResource : public String, public Resource { public: StringResource(const String &s) : String(s) { } }; #ifdef SP_NAMESPACE } #endif #endif /* not StringResource_INCLUDED */