search for: getenumerator

Displaying 4 results from an estimated 4 matches for "getenumerator".

2012 May 04
1
[LLVMdev] Any way how to instantiate templates even when it is not necessary for the compilation?
...e csharp code. Since the header files are written in consistent style, it works pretty well.   But new version of headers contains templates. Nothing fancy, usually stuff like: template IMyEnumerator { virtual HRESULT GetCurrent(T*item) = 0; }; class IWhateverInterface { virtual IMyEnumerator & GetEnumerator() = 0; }; And here lies the problem - since the template IMyEnumerator does not have to be instantiated for clang to compile the headers, this Specialization is not instantiated and the XML does not contain full CXXRecord of the class. I however need to know the full structure because I need to gen...
2012 May 07
0
[LLVMdev] Any way how to instantiate templates even when it is not necessary for the compilation?
...s > pretty well. > > But new version of headers contains templates. Nothing fancy, usually > stuff like: > template <typename T> > IMyEnumerator { > virtual HRESULT GetCurrent(T*item) = 0; > }; > class IWhateverInterface { > virtual IMyEnumerator<int> & GetEnumerator() = 0; > }; > And here lies the problem - since the template IMyEnumerator<int> is > only used in this declaration, this template specialization is not > instantiated and the XML does not contain full CXXRecord of the class. > I however need to know the full structure of the ty...
2012 May 08
0
[LLVMdev] Any way how to instantiate templates even when it is not necessary for the compilation?
...ns templates. Nothing fancy, usually > >> stuff like: > >> template <typename T> > >> IMyEnumerator { > >> virtual HRESULT GetCurrent(T*item) = 0; > >> }; > >> class IWhateverInterface { > >> virtual IMyEnumerator<int> & GetEnumerator() = 0; > >> }; > >> And here lies the problem - since the template IMyEnumerator<int> is > >> only used in this declaration, this template specialization is not > >> instantiated and the XML does not contain full CXXRecord of the class. > >> I howe...
2012 Jan 13
0
Wine release 1.3.37
...9;s. gdiplus: Implement GdipCreateBitmapFromHBITMAP for 16-bit dibs. include/wincodecsdk.idl: Fix typo. windowscodecs: Add a stub IWICMetadataReader/Writer implementation. windowscodecs: Implement IWICMetadataWriter::LoadEx. windowscodecs: Implement IWICMetadataWriter::GetEnumerator. -- Alexandre Julliard julliard at winehq.org