0
我有一個模板化的API函數,看起來像這樣:將參數添加到公共模板
template<typename funcT, class T> int funcProperties(
T func,
funcT extract,
int limit = 0);
現在我想一個標誌參數添加到該模板。我應該添加一個新的模板,還是我可以簡單地將標誌添加到現有的API,然後發佈它?
新的API應該是這樣的:
template<typename funcT, class T> int funcProperties(
T func,
funcT extract,
int limit = 0,
unsigned flags = 0);