[0.1.x] updated: tests for typedVar

git-svn-id: https://pykd.svn.codeplex.com/svn@76357 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\kernelnet_cp 2012-05-15 14:47:22 +00:00 committed by Mikhail I. Izmestev
parent 838d214daa
commit 45f2b4c3ea

View File

@ -56,13 +56,21 @@ public:
void baseMethod() const {} void baseMethod() const {}
virtual void virtFunc() = 0; virtual void virtFunc() = 0;
virtual void virtFunc2() = 0; virtual void virtFunc2() = 0;
classBase() :
m_baseField( -100 )
{}
}; };
class anotherBase { class anotherBase {
static std::string m_stdstr; static std::string m_stdstr;
ULONG m_count; ULONG m_count;
int m_baseField;
public: public:
anotherBase() : m_count( 1234 ){} anotherBase() :
m_count( 1234 ),
m_baseField( 100 )
{}
}; };
std::string anotherBase::m_stdstr = "hello"; std::string anotherBase::m_stdstr = "hello";