summaryrefslogtreecommitdiffstats
path: root/src/Generating/VerticalLimit.h
blob: aeb41c1e8357df9669798fbc8dc91fe9e1dddccf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

// VerticalLimit.h

// Declares the public interface for cPiece's cVerticalLimit implementations





#pragma once

#include "PiecePool.h"





/** Returns a new cPiece::cVerticalLimit descendant based on the specified description.
a_LimitDesc is in the format "<LimitClass>|<Params>". The params and the pipe may be omitted.
If an unknown class is requested or the param parsing fails, nullptr is returned.
If a_LogWarnings is true, any problem is reported into the server console. */
cPiece::cVerticalLimitPtr CreateVerticalLimitFromString(const AString & a_LimitDesc, bool a_LogWarnings);