Cogs.Core
EmscriptenUtilities.h
1#pragma once
2#include "Base.h"
3#include <string>
4
5namespace Cogs
6{
7 namespace Core
8 {
9 namespace EmscriptenUtilities
10 {
11 COGSCORE_DLL_API std::string combine(const std::string & a, const std::string & b);
12 void replaceAll(std::string & str, const std::string & from, const std::string & to);
13 };
14 }
15}
16
17
Contains all Cogs related functionality.
Definition: FieldSetter.h:23