Cosmetic comment changes
Note: copyrights are in the COPYRIGHT file
This commit is contained in:
parent
2862a0a6bc
commit
b57a675d00
5 changed files with 15 additions and 5 deletions
|
|
@ -4285,6 +4285,10 @@ public:
|
||||||
Delete(dirclassname);
|
Delete(dirclassname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------
|
||||||
|
* nestedClassesSupport()
|
||||||
|
*--------------------------------------------------------------------*/
|
||||||
|
|
||||||
NestedClassSupport nestedClassesSupport() const {
|
NestedClassSupport nestedClassesSupport() const {
|
||||||
return NCS_Full;
|
return NCS_Full;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4598,6 +4598,7 @@ public:
|
||||||
/*----------------------------------------------------------------------
|
/*----------------------------------------------------------------------
|
||||||
* extraDirectorProtectedCPPMethodsRequired()
|
* extraDirectorProtectedCPPMethodsRequired()
|
||||||
*--------------------------------------------------------------------*/
|
*--------------------------------------------------------------------*/
|
||||||
|
|
||||||
bool extraDirectorProtectedCPPMethodsRequired() const {
|
bool extraDirectorProtectedCPPMethodsRequired() const {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
@ -4623,6 +4624,10 @@ public:
|
||||||
Setattr(n, "director:ctor", class_ctor);
|
Setattr(n, "director:ctor", class_ctor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------
|
||||||
|
* nestedClassesSupport()
|
||||||
|
*--------------------------------------------------------------------*/
|
||||||
|
|
||||||
NestedClassSupport nestedClassesSupport() const {
|
NestedClassSupport nestedClassesSupport() const {
|
||||||
return NCS_Full;
|
return NCS_Full;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3517,9 +3517,14 @@ bool Language::extraDirectorProtectedCPPMethodsRequired() const {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* -----------------------------------------------------------------------------
|
||||||
|
* Language::nestedClassesSupport()
|
||||||
|
* ----------------------------------------------------------------------------- */
|
||||||
|
|
||||||
Language::NestedClassSupport Language::nestedClassesSupport() const {
|
Language::NestedClassSupport Language::nestedClassesSupport() const {
|
||||||
return NCS_Unknown;
|
return NCS_Unknown;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -----------------------------------------------------------------------------
|
/* -----------------------------------------------------------------------------
|
||||||
* Language::is_wrapping_class()
|
* Language::is_wrapping_class()
|
||||||
* ----------------------------------------------------------------------------- */
|
* ----------------------------------------------------------------------------- */
|
||||||
|
|
|
||||||
|
|
@ -1350,9 +1350,6 @@ public:
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Modified polymorphism code for Ocaml language module.
|
* Modified polymorphism code for Ocaml language module.
|
||||||
* Original:
|
|
||||||
* C++/Python polymorphism demo code, copyright (C) 2002 Mark Rose
|
|
||||||
* <mrose@stm.lbl.gov>
|
|
||||||
*
|
*
|
||||||
* TODO
|
* TODO
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -2600,7 +2600,6 @@ public:
|
||||||
|
|
||||||
/* Insert cleanup code */
|
/* Insert cleanup code */
|
||||||
for (p = l; p;) {
|
for (p = l; p;) {
|
||||||
// if (!checkAttribute(p,"tmap:in:numinputs","0") && !Getattr(p,"tmap:in:parse")) {
|
|
||||||
if (!Getattr(p, "tmap:in:parse") && (tm = Getattr(p, "tmap:freearg"))) {
|
if (!Getattr(p, "tmap:in:parse") && (tm = Getattr(p, "tmap:freearg"))) {
|
||||||
if (Getattr(p, "tmap:freearg:implicitconv")) {
|
if (Getattr(p, "tmap:freearg:implicitconv")) {
|
||||||
const char *convflag = "0";
|
const char *convflag = "0";
|
||||||
|
|
@ -3208,7 +3207,7 @@ public:
|
||||||
* BEGIN C++ Director Class modifications
|
* BEGIN C++ Director Class modifications
|
||||||
* ------------------------------------------------------------------------- */
|
* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/* C++/Python polymorphism demo code, copyright (C) 2002 Mark Rose <mrose@stm.lbl.gov>
|
/* C++/Python polymorphism demo code
|
||||||
*
|
*
|
||||||
* TODO
|
* TODO
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue