TAO CORBA IDL 컴파일 에러
      글쓴이: scoh98 / 작성시간: 수, 2005/03/23 - 9:39오후    
  
  아래의 코드에서 와같이 struct zzz 에서 A module 에 있는 타입과 B module 에 있는 타입을 모두 사용하고 싶으면 어떻게 하나요?
아래와같이 하니깐 에러가 납니다.
고수님들 한수 부탁해요.
// StringSequence.idl
module X {
    typedef sequence <string> StringSequence;
}; 
// BooeanSequence.idl
module Y {
  typedef sequence<boolean> BooleanSequence;
}; 
// UserDefine.idl
#include "StringSequence.idl"
#include "BooeanSequence.idl"
module Y
{
    struct zzz {
                StringSequence   aa;         
                BooeanSequence bb;
    };
}; 
Forums: 


댓글 달기