List, Hash, Vectors

New to FreeBASIC? Post your questions here.
Post Reply
PaulSquires
Posts: 1002
Joined: Jul 14, 2005 23:41

List, Hash, Vectors

Post by PaulSquires »

I have created these containers in another programming language. I don't want to have to port them to FB.

I am safe to assume that the defacto standard for these containers in FB is the FreeBasic Extended Library ( http://ext.freebasic.net )
I am programming in Windows only if that matter at all.

Thanks!
MOD
Posts: 555
Joined: Jun 11, 2009 20:15

Re: List, Hash, Vectors

Post by MOD »

AFAIK fbext won't work with the latest fbc and needs to install libs which you have to precompile for linux.

You can have a look at mdTypes. It doesn't have so many classes like fbext, but should work just fine for your needs. It is also only based on include files, so no libs needed (except for some database persistence features) and works cross platform on 32/64bit and intel/arm.
PaulSquires
Posts: 1002
Joined: Jul 14, 2005 23:41

Re: List, Hash, Vectors

Post by PaulSquires »

Thanks MOD, appreciate the info. I'll definitely check it out :-)
Post Reply