on 4/13/08 12:06 PM, Theodore H. Smith at [EMAIL PROTECTED] wrote: > Hi people, > > if I have a class that exists on one platform, but it doesn't exist on > another... > > is this a bad thing? > > I'm getting the oddest thing with RB 2007r3. I'm compiling a unit test > project. > > Assertions fire at the start, about missing methods. However... I'm > not USING those missing methods! The unit test app runs perfectly, if > I press "continue" to all those error messages. > > What's up? > > I need to make a dummy class and a dummy method? I decided to drop > ElfDataFile for Carbon... as Carbon doesn't really use file > descriptors :(
RB assumes that the class layout is consistent from platform to platform. Particularly it runs the plug-in in the architecture of the IDE to discover the interface. You should be making stub methods for the alternative platforms and have some way to report a "not implemented" error. Chris _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
