mirror of https://github.com/JAJames/Jupiter.git
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.
17 lines
305 B
17 lines
305 B
11 years ago
|
#include <chrono>
|
||
|
#include <string>
|
||
|
#include "../Jupiter/Functions.h"
|
||
|
#include "../Jupiter/CString.h"
|
||
|
#include "../Jupiter/File.h"
|
||
|
#include "../Jupiter/Base64.h"
|
||
|
#include "../Jupiter/InvalidIndex.h"
|
||
|
|
||
|
using namespace Jupiter;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
#if defined _WIN32
|
||
|
system("pause");
|
||
|
#endif // _WIN32
|
||
|
return 0;
|
||
|
}
|