You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
421 B
27 lines
421 B
#ifndef WIZINFO_HPP_INCLUDED
|
|
#define WIZINFO_HPP_INCLUDED
|
|
|
|
|
|
|
|
class CreateClassWizardInfo
|
|
{
|
|
public:
|
|
|
|
CreateClassWizardInfo();
|
|
|
|
// use default dtor
|
|
|
|
CString cn;
|
|
CString ldapDisplayName;
|
|
CString oid;
|
|
CString description;
|
|
CString parentClass;
|
|
int type;
|
|
|
|
CStringList strlistMandatory;
|
|
CStringList strlistOptional;
|
|
};
|
|
|
|
|
|
|
|
#endif // WIZINFO_HPP_INCLUDED
|