Dummy
C++
code posted
by
Me
created at 14 May 08:22, updated at 19 May 21:21
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
class Dummy { public: //Constructor/Destructor Dummy() : m_bIsDummy(true) {} ~Dummy() {} bool bIsDummy() { return m_bIsDummy; } private: bool m_bIsDummy; public string test() { return "test"; } } |
247 Bytes in 3 ms with coderay