lol, stubbsi, like your sig.
Little Class Parser
Hey fsw!
I'm interested! I was waiting for you to release...something!
Don't worry about what other people do/bitch about, just carry on doing what YOU enjoy doing.
I'm interested! I was waiting for you to release...something!
Don't worry about what other people do/bitch about, just carry on doing what YOU enjoy doing.
Win10, PB6.x, okayish CPU, onboard video card, fuzzy monitor (or is that my eyesight?)
"When the facts change, I change my mind" - John Maynard Keynes
"When the facts change, I change my mind" - John Maynard Keynes
-
dell_jockey
- Enthusiast

- Posts: 767
- Joined: Sat Jan 24, 2004 6:56 pm
->It seems to me that only 4 people are really interested in this (me, you and 2 others that pm'ed me), far more people are bit**ing about oop in PB.
Code: Select all
Class cMegaInterested
Please()
Please1()
Please2()
Please3()
Please4()
Please5()
WeWill.l
appreciate.l
AllYour.b
Efforts.w
EndClassI do think if your new Parser works well and gets a nice feedback, then imho Gnozal would easely integrate AutoHighlightning etc. of the new used names into jaPBe.
Much more useful beside taht imho would be a classBrowser
Check out OOP support for PB here!
-
ToastEater
- User

- Posts: 49
- Joined: Tue Jul 25, 2006 5:07 pm
#FSW I LOVE YOU MAN
- PLEASE DO NEVER STOP ON THIS PROJECT I EXPECT TO GET UPDATES EVEN IF YOU ARE DEAD! 
Just what i waited for
m8 this is sooooo nice but one thing i wish what that it was implatanted in PB i hate to include/use other tools for make exe takes ages 
Thanks man
OO is really needed part in programming in large projects and not meaning large projects but i mean very large projects
and can also improve smaller projects
i will make my EatHTTP 4fun with classes
will improve it so even a n00b can make a file downloading
dont turn down on my opion - this aren't mean as a offend
did I forget to say thanks m8
Regards
Just what i waited for
Thanks man
dont turn down on my opion - this aren't mean as a offend
did I forget to say thanks m8
Regards
Sorry for my damn english
amour au PB et au traducteur de google d'ofcourse
amour au PB et au traducteur de google d'ofcourse
- NoahPhense
- Addict

- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
Sorry, but because of the way Structures and Interfaces are implemented in PureBasic, not at this point in time. Properties are stored in Structures and Methods in Interfaces.
If you need to access properties just do a method to get/set the property.
If you choose the same name you just need to add 2 parentesis to do it:
Besides, I like private properties a lot 
If you need to access properties just do a method to get/set the property.
If you choose the same name you just need to add 2 parentesis to do it:
Code: Select all
;with public properties... (not PB)
debug MyClass->MyValue
Code: Select all
;with private properties... (in PB with LCP)
debug MyClass->MyValue()