attrfn.h 369 B

123456789101112131415
  1. #ifndef _ATTRFN_H
  2. #define _ATTRFN_H
  3. #include "attrstr.h"
  4. class _filename : public _string {
  5. public:
  6. _filename(const wchar_t *name, const wchar_t *default_val=L"")
  7. : _string(name, default_val) { }
  8. virtual int getAttributeType() { return AttributeType::FILENAME; }
  9. virtual const wchar_t *getConfigGroup() { return L"studio.configgroup.filename"; }
  10. };
  11. #endif