Visualize precompiled file (*.i) on c++builder

85 views Asked by At

I am using c++builder, I have spent huge time to enable option to finally visualize the result of precompiled files without success, on vc++(just for good illustration) just going to project options->C/C++->Preprocessor->Process to file.

#define PROP(type, var)                                                 \
    protected:                                                      \
        type m_##var;                                               \
    public:                                                         \
    __declspec(property(get = get##var, put = set##var)) type var;  \
    type get##var() const { return m_##var;}                             \
    void set##var(type v) { m_##var = v; this->SetPropertyValue<type>(L"##var",m_##var, v); }

any ideas?

0

There are 0 answers