Suppose TTT is one type of basic Slice types, user-defined types, class or interface, then when can the following slice file be compiled and when can not ? Is there a general principle about pointer's usage ? I am sorry I can not find any restrictions about this in Ice's documentation. Thank you!
Code:module Demo { struct STest { TTT *t; }; sequence<TTT*> TTTSeq; dictionary<int, TTT*> TTTDic; class CTest { TTT *t; } interface ITest { TTT* getFileCompressed(TTT* t1, out TTT *t2); } };

Reply With Quote