On Jan 25, 2007, at 21:41 UTC, Stephen A. Cochran Lists wrote: > I was thinking arrays, I thought the class would have to store the > data in it's properties, which would still have to be arrays.
No, it can store it *internally* however you want. A C array is fine, if you like that sort of thing. Or a linked list, or a hash table, or whatever you want. What goes on in your plugin is between you and your C compiler. :) > You're saying store the data in the class as a delimited string or > something like that, and then have it's methods return it in the > format desired or as random access? I wouldn't store them as delimited strings. I generally use something like a class I wrote long ago called "Vector": <http://www.strout.net/info/coding/classlib/Vector.html> But you can use whatever suits you best. And then, yes, have your class's methods return this data in some RB format or as random access. Best, - Joe -- Joe Strout -- [EMAIL PROTECTED] Verified Express, LLC "Making the Internet a Better Place" http://www.verex.com/ _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
