Leaked source code of windows server 2003
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.

24 lines
387 B

  1. /*
  2. * Value expressions
  3. */
  4. #ifndef DUI_CORE_EXPRESSION_H_INCLUDED
  5. #define DUI_CORE_EXPRESSION_H_INCLUDED
  6. #pragma once
  7. namespace DirectUI
  8. {
  9. ////////////////////////////////////////////////////////
  10. // Expression
  11. class Expression
  12. {
  13. public:
  14. void Destroy() { HDelete<Expression>(this); }
  15. };
  16. } // namespace DirectUI
  17. #endif // DUI_CORE_EXPRESSION_H_INCLUDED