#pragma once namespace dchat { struct Range { int start; int end; int length() const { return end - start; } }; }