28 lines
459 B
C++
28 lines
459 B
C++
// TestWebGen.cpp : Defines the entry point for the console application.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include <iostream>
|
|
#include "GeneralBuilder.h"
|
|
#include <stdio.h>
|
|
#include <experimental\filesystem>
|
|
#include "Utilities.h"
|
|
#include "ThePraDev.h"
|
|
|
|
using namespace std::experimental::filesystem::v1;
|
|
|
|
|
|
using namespace std;
|
|
using namespace CTML;
|
|
|
|
|
|
int main()
|
|
{
|
|
GeneralBuilder dev;
|
|
dev.BuildThePraSite(Utilities::ART);
|
|
cout << "DONE";
|
|
getchar();
|
|
return 0;
|
|
}
|
|
|