diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-26 11:51:54 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-26 11:51:54 +0000 |
| commit | da9edc35a5c095613a85a35ea0622e4ca244fc6b (patch) | |
| tree | a61e3137cb8938001f27c397c447e760ba89a7de /fluid/Fl_Function_Type.cxx | |
| parent | ee5fdc99cec4d9bf9a91e42fbda9acc757fffebd (diff) | |
Add lock icon next to static/private elements in FLUID.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2111 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/Fl_Function_Type.cxx')
| -rw-r--r-- | fluid/Fl_Function_Type.cxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/fluid/Fl_Function_Type.cxx b/fluid/Fl_Function_Type.cxx index c481bd76e..64d6dfb08 100644 --- a/fluid/Fl_Function_Type.cxx +++ b/fluid/Fl_Function_Type.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.1 2002/01/01 15:11:28 easysw Exp $" +// "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.2 2002/04/26 11:51:52 easysw Exp $" // // C function type code for the Fast Light Tool Kit (FLTK). // @@ -113,6 +113,8 @@ const char *c_check(const char *c, int type) { //////////////////////////////////////////////////////////////// +int Fl_Function_Type::is_public() const {return public_;} + Fl_Type *Fl_Function_Type::make() { Fl_Type *p = Fl_Type::current; while (p && !p->is_decl_block()) p = p->parent; @@ -404,6 +406,8 @@ void Fl_CodeBlock_Type::write_code2() { //////////////////////////////////////////////////////////////// +int Fl_Decl_Type::is_public() const {return public_;} + Fl_Type *Fl_Decl_Type::make() { Fl_Type *p = Fl_Type::current; while (p && !p->is_decl_block()) p = p->parent; @@ -583,6 +587,8 @@ const char* Fl_Type::class_name(const int need_nest) const { return 0; } +int Fl_Class_Type::is_public() const {return public_;} + Fl_Type *Fl_Class_Type::make() { Fl_Type *p = Fl_Type::current; while (p && !p->is_decl_block()) p = p->parent; @@ -672,5 +678,5 @@ void Fl_Class_Type::write_code2() { } // -// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.1 2002/01/01 15:11:28 easysw Exp $". +// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.2 2002/04/26 11:51:52 easysw Exp $". // |
