Page 2 of 2

Posted: Wed Aug 16, 2006 1:27 am
by Dare
Yes.

lol, stubbsi, like your sig. :D I can relate.

Posted: Wed Aug 16, 2006 1:57 am
by Amundo
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.

Posted: Wed Aug 16, 2006 10:33 am
by dell_jockey
Straker wrote:New poll: whoever is interested in fsw's class parser please reply to thread.

I am interested.

And if you are not interested, please don't post anything here, this is not a debate about OOP in PB.
I am...

Posted: Wed Aug 16, 2006 11:39 am
by helpy
... interested too!

Posted: Wed Aug 16, 2006 8:21 pm
by inc.
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
EndClass
;)

I 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 :shock: 8)

Posted: Wed Aug 16, 2006 10:11 pm
by ToastEater
#FSW I LOVE YOU MAN :D - PLEASE DO NEVER STOP ON THIS PROJECT I EXPECT TO GET UPDATES EVEN IF YOU ARE DEAD! :)

Just what i waited for :D 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 :D OO is really needed part in programming in large projects and not meaning large projects but i mean very large projects :D and can also improve smaller projects :D i will make my EatHTTP 4fun with classes :D 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 :D

Regards

Posted: Wed Aug 16, 2006 11:33 pm
by Flype
also interested, of course.

keep on working fsw :)

Posted: Thu Aug 17, 2006 3:28 am
by theNerd
I'm interested!! 8)

Posted: Tue Aug 22, 2006 10:47 pm
by fsw
OK, decided to release it.
Look out for it in the Anouncement Section - if all goes well this weekend.

:P

Posted: Tue Aug 22, 2006 11:17 pm
by jack
thanks fsw, even I am very interested :)

Posted: Tue Aug 29, 2006 3:38 am
by NoahPhense
fsw wrote:OK, decided to release it.
Look out for it in the Anouncement Section - if all goes well this weekend.

:P
kewl ..

- np

Posted: Thu Aug 31, 2006 3:51 pm
by Leonhard
Can you added the keywords 'public' and 'private' in the Class?

Posted: Thu Aug 31, 2006 4:27 pm
by fsw
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:

Code: Select all

;with public properties... (not PB)
debug MyClass->MyValue

Code: Select all

;with private properties... (in PB with LCP)
debug MyClass->MyValue()
Besides, I like private properties a lot :wink: