WebAppOther.h 223 B

123456789101112131415161718192021222324
  1. #pragma once
  2. #include "WebApp.h"
  3. namespace Atomic
  4. {
  5. class WebAppOther : public WebApp
  6. {
  7. public:
  8. WebAppOther();
  9. private:
  10. DISALLOW_COPY_AND_ASSIGN(WebAppOther);
  11. IMPLEMENT_REFCOUNTING(WebAppOther);
  12. };
  13. }