summaryrefslogtreecommitdiff
path: root/src/Dynamic/Dynamic_CompositMethod.cxx
blob: f261efaf2efbe777960f403c11fe07e2aa6969f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// File:	Dynamic_CompositMethod.cxx
// Created:	Fri Aug 26 11:35:39 1994
// Author:	Gilles DEBARBOUILLE
//		<gde@watson>
// CRD : 15/04/97 : Passage WOK++ : Remplacement de TYPE par STANDARD_TYPE

#include <Dynamic_CompositMethod.ixx>


//=======================================================================
//function : Dynamic_CompositMethod
//purpose  : 
//=======================================================================

Dynamic_CompositMethod::Dynamic_CompositMethod(const Standard_CString aname)
: Dynamic_MethodDefinition(aname)
{
  thesequenceofmethods = new Dynamic_SequenceOfMethods();
}

//=======================================================================
//function : Method
//purpose  : 
//=======================================================================

void Dynamic_CompositMethod::Method(const Handle(Dynamic_Method)& amethod)
{
  if(amethod->IsKind(STANDARD_TYPE(Dynamic_MethodDefinition)))
    cout<<"bad argument type"<<endl;
  else
    thesequenceofmethods->Append(amethod);
}

//=======================================================================
//function : NumberOfMethods
//purpose  : 
//=======================================================================

Standard_Integer Dynamic_CompositMethod::NumberOfMethods() const
{
  return thesequenceofmethods->Length();
}

//=======================================================================
//function : Method
//purpose  : 
//=======================================================================

Handle(Dynamic_Method) Dynamic_CompositMethod::Method(const Standard_Integer anindex) const
{
  return thesequenceofmethods->Value(anindex);
}

//=======================================================================
//function : Dump
//purpose  : 
//=======================================================================

void Dynamic_CompositMethod::Dump(Standard_OStream& astream) const
{
  astream << "CompositMethod : " << endl;
  Dynamic_MethodDefinition::Dump(astream);
  astream << "Dump of Methods Instances : " << endl;
  for (Standard_Integer i=1; i<= thesequenceofmethods->Length(); i++) {
    astream << "Method No : " << i << endl;
    thesequenceofmethods->Value(i)->Dump(astream);
    astream << endl;
  }
}