staruml / staruml-cpp

C++ extension for StarUML
MIT License
173 stars 66 forks source link

Identifying Template which includes "=" #8

Open dongjoon1251 opened 9 years ago

dongjoon1251 commented 9 years ago

Hello,

I have a project that has a number of templated classes and I'd really like to import them.

Here are two small examples, the first won't import, however the second does.

template class TestTemplatedClass { public: void Method(); int Method2(float input); private: int m_member; };

class NotTemplatedClass { public: void Method(); int Method2(float` input); private: int m_member; };

Is there a way to get templated classes to import properly?

-Jameson