mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
[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:
parent
838d214daa
commit
45f2b4c3ea
@ -56,13 +56,21 @@ public:
|
||||
void baseMethod() const {}
|
||||
virtual void virtFunc() = 0;
|
||||
virtual void virtFunc2() = 0;
|
||||
|
||||
classBase() :
|
||||
m_baseField( -100 )
|
||||
{}
|
||||
};
|
||||
|
||||
class anotherBase {
|
||||
static std::string m_stdstr;
|
||||
ULONG m_count;
|
||||
int m_baseField;
|
||||
public:
|
||||
anotherBase() : m_count( 1234 ){}
|
||||
anotherBase() :
|
||||
m_count( 1234 ),
|
||||
m_baseField( 100 )
|
||||
{}
|
||||
};
|
||||
std::string anotherBase::m_stdstr = "hello";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user