LTP GCOV extension - code coverage report
Current view: directory - src/cpp/dev/idlc - parameter.cpp
Test: YAORB-0.2.info
Date: 2006-02-27 Instrumented lines: 10
Code covered: 80.0 % Executed lines: 8

       1                 : //==============================================================================
       2                 : // File <$/src/cpp/dev/idlc/parameter.cpp>
       3                 : // This file is part of YaOrb : Yet Another Object Request Broker,
       4                 : // Copyright (c) 2000-2003, Marc Alff.
       5                 : //
       6                 : // This program is free software; you can redistribute it and/or
       7                 : // modify it under the terms of the GNU General Public License
       8                 : // as published by the Free Software Foundation; either version 2
       9                 : // of the License, or (at your option) any later version.
      10                 : //
      11                 : // This program is distributed in the hope that it will be useful,
      12                 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
      13                 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      14                 : // GNU General Public License for more details.
      15                 : //
      16                 : // You should have received a copy of the GNU General Public License
      17                 : // along with this program; if not, write to the Free Software
      18                 : // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
      19                 : //
      20                 : //==============================================================================
      21                 : 
      22                 : #include "src/cpp/dev/idlc/parameter.h"
      23                 : #include "src/cpp/dev/idlc/idl_type.h"
      24                 : 
      25                 : Parameter::Parameter(
      26                 :    ParameterAttribute attrib,
      27                 :    const String& name,
      28            3473 :    IDLType *type)
      29            3473 :  : Symbol(name, parameterSymbol), _attrib(attrib), _type(type)
      30                 : {
      31                 : }
      32                 : 
      33            3472 : Parameter::~Parameter()
      34                 : {
      35            3472 :    delete _type ;
      36               0 : }
      37                 : 
      38            3305 : IDLType* Parameter::GetType(void) const
      39                 : {
      40                 :    return _type ;
      41                 : }
      42                 : 
      43            4843 : ParameterAttribute Parameter::GetAttribute(void) const
      44                 : {
      45                 :    return _attrib ;
      46              48 : }
      47              48 : 

Generated by: LTP GCOV extension version 1.4