Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
6answers
125 views

Is it possible to make creation of different classes controllable by configurations?

Is it possible at all to control the creation of different classes from configurations? Say, I have a function which does this which is hard-coded: BaseClass* getClassObject(int type) { switch ...
1
vote
1answer
41 views

Making an iPhone Application Configurable

For my application I have multiple customers. For each customer there is a different set of images and server URLs. To address this issue I have created customer-specific files. So according to the ...
1
vote
5answers
779 views

Suggestions on how to make a configurable parser

I want to build a parser for a C like language. The interesting aspect about it is that I want to build it in such a way that someone who has access to the source can easily modified it to extend the ...