Return-Path: Delivered-To: apmail-incubator-qpid-commits-archive@locus.apache.org Received: (qmail 94512 invoked from network); 4 Apr 2008 18:25:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Apr 2008 18:25:35 -0000 Received: (qmail 87878 invoked by uid 500); 4 Apr 2008 18:25:34 -0000 Delivered-To: apmail-incubator-qpid-commits-archive@incubator.apache.org Received: (qmail 87867 invoked by uid 500); 4 Apr 2008 18:25:34 -0000 Mailing-List: contact qpid-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: qpid-dev@incubator.apache.org Delivered-To: mailing list qpid-commits@incubator.apache.org Received: (qmail 87858 invoked by uid 99); 4 Apr 2008 18:25:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Apr 2008 11:25:34 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 04 Apr 2008 18:24:51 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 0AB411A9832; Fri, 4 Apr 2008 11:25:11 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r644812 - in /incubator/qpid/trunk/qpid/cpp/managementgen/templates: Package.cpp Package.h Date: Fri, 04 Apr 2008 18:25:10 -0000 To: qpid-commits@incubator.apache.org From: kpvdr@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080404182511.0AB411A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: kpvdr Date: Fri Apr 4 11:25:08 2008 New Revision: 644812 URL: http://svn.apache.org/viewvc?rev=644812&view=rev Log: Additional files for Ted Ross's checkin Added: incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.cpp incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.h Added: incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.cpp URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.cpp?rev=644812&view=auto ============================================================================== --- incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.cpp (added) +++ incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.cpp Fri Apr 4 11:25:08 2008 @@ -0,0 +1,32 @@ +/*MGEN:commentPrefix=//*/ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + +/*MGEN:Root.Disclaimer*/ + +#include "qpid/management/Package/*MGEN:Schema.PackageNameCap*/.h" +/*MGEN:Schema.ClassIncludes*/ + +using namespace qpid::management; + +Package/*MGEN:Schema.PackageNameCap*/::Package/*MGEN:Schema.PackageNameCap*/ (ManagementAgent::shared_ptr agent) +{ +/*MGEN:Schema.ClassRegisters*/ +} + Added: incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.h URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.h?rev=644812&view=auto ============================================================================== --- incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.h (added) +++ incubator/qpid/trunk/qpid/cpp/managementgen/templates/Package.h Fri Apr 4 11:25:08 2008 @@ -0,0 +1,41 @@ +/*MGEN:commentPrefix=//*/ +#ifndef _MANAGEMENT_PACKAGE_/*MGEN:Schema.PackageNameUpper*/_ +#define _MANAGEMENT_PACKAGE_/*MGEN:Schema.PackageNameUpper*/_ + +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + +/*MGEN:Root.Disclaimer*/ + +#include "qpid/management/ManagementAgent.h" + +namespace qpid { +namespace management { + +class Package/*MGEN:Schema.PackageNameCap*/ +{ + public: + Package/*MGEN:Schema.PackageNameCap*/ (ManagementAgent::shared_ptr agent); + ~Package/*MGEN:Schema.PackageNameCap*/ () {} +}; + +}} + + +#endif /*!_MANAGEMENT_PACKAGE_/*MGEN:Schema.PackageNameUpper*/_*/