2019-07-27 17:36:24 +03:00
|
|
|
//
|
|
|
|
|
// Yet Another POD-Bot, based on PODBot by Markus Klinge ("CountFloyd").
|
2019-09-21 23:20:33 +03:00
|
|
|
// Copyright (c) Yet Another POD-Bot Contributors <yapb@entix.io>.
|
2019-07-27 17:36:24 +03:00
|
|
|
//
|
2019-09-21 23:20:33 +03:00
|
|
|
// This software is licensed under the MIT license.
|
|
|
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt
|
2019-07-27 17:36:24 +03:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <crlib/cr-platform.h>
|
|
|
|
|
#include <crlib/cr-basic.h>
|
|
|
|
|
#include <crlib/cr-alloc.h>
|
|
|
|
|
#include <crlib/cr-array.h>
|
|
|
|
|
#include <crlib/cr-binheap.h>
|
|
|
|
|
#include <crlib/cr-files.h>
|
|
|
|
|
#include <crlib/cr-lambda.h>
|
|
|
|
|
#include <crlib/cr-http.h>
|
|
|
|
|
#include <crlib/cr-library.h>
|
|
|
|
|
#include <crlib/cr-dict.h>
|
|
|
|
|
#include <crlib/cr-logger.h>
|
|
|
|
|
#include <crlib/cr-math.h>
|
|
|
|
|
#include <crlib/cr-vector.h>
|
|
|
|
|
#include <crlib/cr-random.h>
|
|
|
|
|
#include <crlib/cr-ulz.h>
|
|
|
|
|
#include <crlib/cr-color.h>
|
2019-07-31 14:05:36 +03:00
|
|
|
#include <crlib/cr-hook.h>
|
2019-07-27 17:36:24 +03:00
|
|
|
|
|
|
|
|
CR_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
|
|
namespace types {
|
|
|
|
|
using StringArray = Array <String>;
|
|
|
|
|
using IntArray = Array <int>;
|
2019-08-01 23:02:44 +03:00
|
|
|
}
|
2019-07-27 17:36:24 +03:00
|
|
|
|
|
|
|
|
using namespace cr::types;
|
|
|
|
|
|
|
|
|
|
CR_NAMESPACE_END
|