| 12345678910111213141516171819202122232425 |
- #include "../Build/BuildWeb.h"
- #include "PlatformWeb.h"
- namespace ToolCore
- {
- PlatformWeb::PlatformWeb(Context* context) : Platform(context)
- {
- }
- PlatformWeb::~PlatformWeb()
- {
- }
- BuildBase* PlatformWeb::NewBuild(Project *project)
- {
- return new BuildWeb(context_, project);
- }
- }
|